--- hatari/src/includes/sdlgui.h 2019/04/01 07:13:38 1.1.1.7 +++ hatari/src/includes/sdlgui.h 2019/04/01 07:14:43 1.1.1.8 @@ -62,10 +62,12 @@ typedef struct extern int SDLGui_Init(void); extern int SDLGui_UnInit(void); extern int SDLGui_SetScreen(SDL_Surface *pScrn); +extern void SDLGui_GetFontSize(int *width, int *height); +extern void SDLGui_Text(int x, int y, const char *txt); extern void SDLGui_DrawDialog(const SGOBJ *dlg); extern int SDLGui_DoDialog(SGOBJ *dlg, SDL_Event *pEventOut); extern void SDLGui_CenterDlg(SGOBJ *dlg); -extern char* SDLGui_FileSelect(const char *path_and_name, char **zip_path, BOOL bAllowNew); -extern BOOL SDLGui_FileConfSelect(char *dlgname, char *confname, int maxlen, BOOL bAllowNew); +extern char* SDLGui_FileSelect(const char *path_and_name, char **zip_path, bool bAllowNew); +extern bool SDLGui_FileConfSelect(char *dlgname, char *confname, int maxlen, bool bAllowNew); #endif