X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Finclude%2Fgui.h;h=ebd04c9558fa56de490913cae82bf558d9427321;hb=42a0fe10ada4fb012e64ae248073d23325d59016;hp=9259796c93a7d08c859fa426dcc677a0cef73719;hpb=a2f29c64b6ca441c51d6d1340907a1168c15fc7b;p=virtualjaguar diff --git a/src/include/gui.h b/src/include/gui.h index 9259796..ebd04c9 100644 --- a/src/include/gui.h +++ b/src/include/gui.h @@ -7,6 +7,23 @@ #ifndef __GUI_H__ #define __GUI_H__ -void DrawText(int16 * screen, uint32 x, uint32 y, bool invert, const char * text, ...); +#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__