Add a Win32 NoGUI platform and project

This commit is contained in:
Stenzek
2019-11-26 15:25:19 +11:00
parent 0755f92979
commit 5a65031611
11 changed files with 421 additions and 7 deletions

View File

@ -35,10 +35,15 @@ public:
#ifdef HAVE_X11
static std::unique_ptr<Platform> CreateX11Platform();
#endif
#ifdef __linux__
static std::unique_ptr<Platform> CreateFBDevPlatform();
#endif
#ifdef _WIN32
static std::unique_ptr<Platform> CreateWin32Platform();
#endif
protected:
void UpdateRunningFlag();