14 lines
461 B
C
14 lines
461 B
C
#ifndef _XSDL_GFX_H_
|
|
#define _XSDL_GFX_H_
|
|
|
|
enum { VID_X = 480, VID_Y = 320 };
|
|
|
|
void XSDL_initSDL();
|
|
void XSDL_deinitSDL();
|
|
void XSDL_unpackFiles(int freeSpaceRequiredMb);
|
|
void XSDL_showConfigMenu(int * resolutionW, int * displayW, int * resolutionH, int * displayH, int * builtinKeyboard, int * ctrlAltShiftKeys);
|
|
void XSDL_generateBackground(const char * port, int showHelp, int resolutionW, int resolutionH);
|
|
void XSDL_showServerLaunchErrorMessage();
|
|
|
|
#endif
|