X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fgui.h;fp=src%2Fgui.h;h=ebd04c9558fa56de490913cae82bf558d9427321;hb=2ae315f25e623cc8279d3c9012a3a166d86684c2;hp=0000000000000000000000000000000000000000;hpb=920ff84436f9539af4e893ed3857a22a554ffd72;p=virtualjaguar diff --git a/src/gui.h b/src/gui.h new file mode 100644 index 0000000..ebd04c9 --- /dev/null +++ b/src/gui.h @@ -0,0 +1,29 @@ +// +// GUI.H +// +// Graphical User Interface support +// + +#ifndef __GUI_H__ +#define __GUI_H__ + +#include "types.h" + +#ifdef __cplusplus +extern "C" { +#endif + +void InitGUI(void); +void GUIDone(void); +bool GUIMain(char *); + +// Not sure why these are in *this* file, but here they are... :-/ + +uint32 JaguarLoadROM(uint8 * rom, char * path); +bool JaguarLoadFile(char * path); + +#ifdef __cplusplus +} +#endif + +#endif // __GUI_H__