Files
commandergenius/project/jni/application/xserver/gfx.h
2019-09-09 23:36:07 +03:00

14 lines
474 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, char * port);
void XSDL_generateBackground(const char * port, int showHelp, int resolutionW, int resolutionH);
void XSDL_showServerLaunchErrorMessage();
#endif