]> Shamusworld >> Repos - virtualjaguar/blob - src/gui/gui.h
Forgot missing new files... :-P
[virtualjaguar] / src / gui / 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 bool GUIMain(char *);
19
20 // Not sure why these are in *this* file, but here they are... :-/
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__