Common: Bump _WIN32_WINNT

This commit is contained in:
Stenzek 2023-08-31 19:49:32 +10:00
parent f6c8a850ae
commit afed8297c9

View file

@ -10,11 +10,11 @@
#define NOMINMAX 1 #define NOMINMAX 1
#endif #endif
// require vista+ // require Win10+
#ifdef _WIN32_WINNT #ifdef _WIN32_WINNT
#undef _WIN32_WINNT #undef _WIN32_WINNT
#endif #endif
#define _WIN32_WINNT _WIN32_WINNT_VISTA #define _WIN32_WINNT _WIN32_WINNT_WIN10
#include <windows.h> #include <windows.h>