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