Files
commandergenius/project/jni/application/xserver/gfx.h
2021-03-13 01:24:39 +02:00

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