]> Shamusworld >> Repos - virtualjaguar/blob - src/include/gui.h
Function rearrangement/deletion
[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 #include "types.h"
11
12 #ifdef __cplusplus
13 extern "C" {
14 #endif
15
16 void InitGUI(void);
17 void GUIDone(void);
18 //void DrawString(int16 * screen, uint32 x, uint32 y, bool invert, const char * text, ...);
19 //bool GUIMain(void);
20 bool GUIMain(char *);
21
22 uint32 JaguarLoadROM(uint8 * rom, char * path);
23 bool JaguarLoadFile(char * path);
24
25 #ifdef __cplusplus
26 }
27 #endif
28
29 #endif  // __GUI_H__