From e245a93c1bccd16b1eda92e82719c97525203a86 Mon Sep 17 00:00:00 2001 From: Peter Nelson Date: Wed, 8 May 2024 12:07:28 +0100 Subject: [PATCH] Cleanup: Remove MinGW Windows XP support workaround. --- src/stdafx.h | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/stdafx.h b/src/stdafx.h index 3081beafe5..91965fe934 100644 --- a/src/stdafx.h +++ b/src/stdafx.h @@ -10,15 +10,6 @@ #ifndef STDAFX_H #define STDAFX_H -#if defined(_WIN32) - /* MinGW defaults to Windows 7 if none of these are set, and they must be set before any MinGW header is included */ -# define NTDDI_VERSION NTDDI_WINXP // Windows XP -# define _WIN32_WINNT 0x501 // Windows XP -# define _WIN32_WINDOWS 0x501 // Windows XP -# define WINVER 0x0501 // Windows XP -# define _WIN32_IE_ 0x0600 // 6.0 (XP+) -#endif - #ifdef _MSC_VER /* Stop Microsoft (and clang-cl) compilers from complaining about potentially-unsafe/potentially-non-standard functions */ # define _CRT_SECURE_NO_DEPRECATE