X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Finclude%2Fgui.h;h=14fe212f0d80d90214d9152e499553549e853539;hb=d1f771d16daa368e567adc10e2b1868ab86be204;hp=57fb8905c73213c5b0a5ab87b062ac813a49da6b;hpb=67a5f1a40072983cf87ae2093ca95c271d14e706;p=virtualjaguar diff --git a/src/include/gui.h b/src/include/gui.h index 57fb890..14fe212 100644 --- a/src/include/gui.h +++ b/src/include/gui.h @@ -7,6 +7,24 @@ #ifndef __GUI_H__ #define __GUI_H__ -void DrawText(int16 * screen, uint32 x, uint32 y, const char * text, ...); +#include "types.h" + +#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); +bool JaguarLoadFile(char * path); + +#ifdef __cplusplus +} +#endif #endif // __GUI_H__