X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fgui%2Fgui.h;h=6520f53612305e28727d5d0803b8a364f66d437c;hb=94e1e961b57f253b760298ab0bae96a7de6d20fa;hp=ebd04c9558fa56de490913cae82bf558d9427321;hpb=2a28fa007da024402b00c2e341afaa9609ac1273;p=virtualjaguar diff --git a/src/gui/gui.h b/src/gui/gui.h index ebd04c9..6520f53 100644 --- a/src/gui/gui.h +++ b/src/gui/gui.h @@ -7,20 +7,20 @@ #ifndef __GUI_H__ #define __GUI_H__ -#include "types.h" - #ifdef __cplusplus extern "C" { #endif -void InitGUI(void); +void GUIInit(void); void GUIDone(void); bool GUIMain(char *); +void GUICrashGracefully(const char *); -// Not sure why these are in *this* file, but here they are... :-/ +// Exported vars -uint32 JaguarLoadROM(uint8 * rom, char * path); -bool JaguarLoadFile(char * path); +extern bool showGUI; +extern bool exitGUI; // Hmm. +extern bool finished; // Current emulator loop is finished #ifdef __cplusplus }