X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Finclude%2Fgui.h;h=ebd04c9558fa56de490913cae82bf558d9427321;hb=1d731c12554223de8480d16ef5403e3022c7139f;hp=2a3ca2ead8a77e5aa5b81e9eb09799fe0d819e3b;hpb=0a27dbd881b0a9e84935c03943ee35370f32d566;p=virtualjaguar diff --git a/src/include/gui.h b/src/include/gui.h index 2a3ca2e..ebd04c9 100644 --- a/src/include/gui.h +++ b/src/include/gui.h @@ -7,14 +7,20 @@ #ifndef __GUI_H__ #define __GUI_H__ +#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(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 }