]> Shamusworld >> Repos - virtualjaguar/blob - src/gui.h
Forgot missing new files... :-P
[virtualjaguar] / src / 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 GUIInit(void);
15 void GUIDone(void);
16 bool GUIMain(char *);
17 void GUICrashGracefully(const char *);
18
19 // Exported vars
20
21 extern bool showGUI;
22 extern bool exitGUI;                                                    // Hmm.
23 extern bool finished;                                                   // Current emulator loop is finished
24
25 #ifdef __cplusplus
26 }
27 #endif
28
29 #endif  // __GUI_H__