Files
commandergenius/project/jni/application/xserver/gfx.h

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