Browse Source

Fixed a linker error when building SDL/WinRT

The Win32 APIs, VerifyVersionInfoW and VerSetConditionMask, are not currently
available for use in WinRT apps.  This change primarily #if[n]defs-out some
calls to them.
David Ludwig 11 years ago
parent
commit
c10afa4816
1 changed files with 6 additions and 0 deletions
  1. 6 0
      src/core/windows/SDL_windows.c

+ 6 - 0
src/core/windows/SDL_windows.c

@@ -93,6 +93,7 @@ WIN_CoUninitialize(void)
 #endif
 }
 
+#ifndef __WINRT__
 static BOOL
 IsWindowsVersionOrGreater(WORD wMajorVersion, WORD wMinorVersion, WORD wServicePackMajor)
 {
@@ -112,10 +113,15 @@ IsWindowsVersionOrGreater(WORD wMajorVersion, WORD wMinorVersion, WORD wServiceP
 
     return VerifyVersionInfoW(&osvi, VER_MAJORVERSION | VER_MINORVERSION | VER_SERVICEPACKMAJOR, dwlConditionMask) != FALSE;
 }
+#endif
 
 BOOL WIN_IsWindowsVistaOrGreater()
 {
+#ifdef __WINRT__
+    return TRUE;
+#else
     return IsWindowsVersionOrGreater(HIBYTE(_WIN32_WINNT_VISTA), LOBYTE(_WIN32_WINNT_VISTA), 0);
+#endif
 }
 
 #endif /* __WIN32__ */