]> Shamusworld >> Repos - virtualjaguar/blobdiff - src/include/gui.h
Changes for 1.0.7 update
[virtualjaguar] / src / include / gui.h
index 9259796c93a7d08c859fa426dcc677a0cef73719..e8e516dc725486503a743632b7762e0c576109ae 100644 (file)
@@ -7,6 +7,21 @@
 #ifndef __GUI_H__
 #define __GUI_H__
 
-void DrawText(int16 * screen, uint32 x, uint32 y, bool invert, const char * text, ...);
+#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);
+
+uint32 JaguarLoadROM(uint8 * rom, char * path);
+void JaguarLoadCart(uint8 * mem, char * path);
+
+#ifdef __cplusplus
+}
+#endif
 
 #endif // __GUI_H__