Win32: Remove checks for pre-XP Windows

Windows XP is the oldest version supported by GLFW 3.4.
This commit is contained in:
Camilla Löwy
2020-05-20 17:59:10 +02:00
parent 5f9dfe3d83
commit 51a465ee2b
2 changed files with 3 additions and 10 deletions

View File

@@ -160,9 +160,6 @@ typedef enum
#endif /*DPI_AWARENESS_CONTEXT_PER_MONITOR_AWARE_V2*/
// HACK: Define versionhelpers.h functions manually as MinGW lacks the header
#define IsWindowsXPOrGreater() \
_glfwIsWindowsVersionOrGreaterWin32(HIBYTE(_WIN32_WINNT_WINXP), \
LOBYTE(_WIN32_WINNT_WINXP), 0)
#define IsWindowsVistaOrGreater() \
_glfwIsWindowsVersionOrGreaterWin32(HIBYTE(_WIN32_WINNT_VISTA), \
LOBYTE(_WIN32_WINNT_VISTA), 0)