X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Finclude%2Fgui.h;h=e8e516dc725486503a743632b7762e0c576109ae;hb=847f593941ee60d7be72cd07309201bfdb3651f8;hp=9efd8a2b7df9e54d48973ce63fce12e996137969;hpb=cd61d997688c71e8eeecf39e4ce9d77a08872d7b;p=virtualjaguar diff --git a/src/include/gui.h b/src/include/gui.h index 9efd8a2..e8e516d 100644 --- a/src/include/gui.h +++ b/src/include/gui.h @@ -7,8 +7,21 @@ #ifndef __GUI_H__ #define __GUI_H__ -void BlitBackbuffer(void); -void DrawText(int16 * screen, uint32 x, uint32 y, bool invert, const char * text, ...); -bool UserSelectFile(char * path, char * filename); +#ifdef __cplusplus +extern "C" { +#endif + +void InitGUI(void); +void GUIDone(void); +void DrawString(int16 * screen, uint32 x, uint32 y, bool invert, const char * text, ...); +//bool UserSelectFile(char * path, char * filename); +bool GUIMain(void); + +uint32 JaguarLoadROM(uint8 * rom, char * path); +void JaguarLoadCart(uint8 * mem, char * path); + +#ifdef __cplusplus +} +#endif #endif // __GUI_H__