From afed8297c9ded75ea6c1e08ad229fa768aa63b2d Mon Sep 17 00:00:00 2001 From: Stenzek Date: Thu, 31 Aug 2023 19:49:32 +1000 Subject: [PATCH] Common: Bump _WIN32_WINNT --- src/common/windows_headers.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/windows_headers.h b/src/common/windows_headers.h index 1587fae6d..ba4d60f3d 100644 --- a/src/common/windows_headers.h +++ b/src/common/windows_headers.h @@ -10,11 +10,11 @@ #define NOMINMAX 1 #endif -// require vista+ +// require Win10+ #ifdef _WIN32_WINNT #undef _WIN32_WINNT #endif -#define _WIN32_WINNT _WIN32_WINNT_VISTA +#define _WIN32_WINNT _WIN32_WINNT_WIN10 #include