]> Shamusworld >> Repos - virtualjaguar/blobdiff - src/include/gui.h
New overlay system functions
[virtualjaguar] / src / include / gui.h
index b531132bd10cc08af2e80e4161975e1d976a3739..ebd04c9558fa56de490913cae82bf558d9427321 100644 (file)
@@ -7,18 +7,19 @@
 #ifndef __GUI_H__
 #define __GUI_H__
 
+#include "types.h"
+
 #ifdef __cplusplus
 extern "C" {
 #endif
 
 void InitGUI(void);
 void GUIDone(void);
-void DrawString(int16 * screen, uint32 x, uint32 y, bool invert, const char * text, ...);
-//bool UserSelectFile(char * path, char * filename);
-bool GUIMain(void);
+bool GUIMain(char *);
+
+// Not sure why these are in *this* file, but here they are... :-/
 
 uint32 JaguarLoadROM(uint8 * rom, char * path);
-//void JaguarLoadCart(uint8 * mem, char * path);
 bool JaguarLoadFile(char * path);
 
 #ifdef __cplusplus