]> Shamusworld >> Repos - virtualjaguar/blob - src/include/gui.h
Small header sanity update
[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 UserSelectFile(char * path, char * filename);
20 bool GUIMain(void);
21
22 uint32 JaguarLoadROM(uint8 * rom, char * path);
23 //void JaguarLoadCart(uint8 * mem, char * path);
24 bool JaguarLoadFile(char * path);
25
26 #ifdef __cplusplus
27 }
28 #endif
29
30 #endif  // __GUI_H__