]> Shamusworld >> Repos - virtualjaguar/blob - src/include/gui.h
e8e516dc725486503a743632b7762e0c576109ae
[virtualjaguar] / src / include / gui.h
1 //
2 // GUI.H
3 //
4 // Graphical User Interface support
5 //
6
7 #ifndef __GUI_H__
8 #define __GUI_H__
9
10 #ifdef __cplusplus
11 extern "C" {
12 #endif
13
14 void InitGUI(void);
15 void GUIDone(void);
16 void DrawString(int16 * screen, uint32 x, uint32 y, bool invert, const char * text, ...);
17 //bool UserSelectFile(char * path, char * filename);
18 bool GUIMain(void);
19
20 uint32 JaguarLoadROM(uint8 * rom, char * path);
21 void JaguarLoadCart(uint8 * mem, char * path);
22
23 #ifdef __cplusplus
24 }
25 #endif
26
27 #endif  // __GUI_H__