Compile fixes for WinRT UWP

This commit is contained in:
Joshua Granick
2018-07-20 20:46:15 -07:00
parent 66a1450aca
commit 884f1d5a8e
12 changed files with 58 additions and 37 deletions

View File

@@ -42,13 +42,13 @@ namespace lime {
static std::wstring* GetPlatformName ();
static std::wstring* GetPlatformVersion ();
static double GetTimer ();
#ifdef HX_WINDOWS
#if defined(HX_WINDOWS) && !defined (HX_WINRT)
static int GetWindowsConsoleMode (int handleType);
#endif
static void OpenFile (const char* path);
static void OpenURL (const char* url, const char* target);
static bool SetAllowScreenTimeout (bool allow);
#ifdef HX_WINDOWS
#if defined(HX_WINDOWS) && !defined (HX_WINRT)
static bool SetWindowsConsoleMode (int handleType, int mode);
#endif