mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-24 23:25:38 +00:00
24 lines
525 B
C++
24 lines
525 B
C++
//the Makefile defines one of these:
|
|
//#define USE_OPENGL_ES
|
|
//#define USE_OPENGL_DESKTOP
|
|
|
|
#ifdef USE_OPENGL_ES
|
|
#define GLHEADER <GLES/gl.h>
|
|
#endif
|
|
|
|
#ifdef USE_OPENGL_DESKTOP
|
|
//why the hell this naming inconsistency exists is well beyond me
|
|
#ifdef WIN32
|
|
#define sleep Sleep
|
|
#endif
|
|
|
|
#define GLHEADER <SDL_opengl.h>
|
|
#endif
|
|
|
|
#include <string>
|
|
|
|
std::string getHomePath();
|
|
|
|
int runShutdownCommand(); // shut down the system (returns 0 if successful)
|
|
int runRestartCommand(); // restart the system (returns 0 if successful)
|