1
0
Fork 0

Fix ef826a048a: [MinGW] "_WIN32_WINNT_WIN7" is not defined (#13354)

pull/13357/head
Loïc Guilloux 2025-01-22 18:44:54 +01:00 committed by GitHub
parent 3a50b24a8d
commit b91685e4b6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@
#if defined(_WIN32) #if defined(_WIN32)
/* Minimum supported version is Windows 7. */ /* Minimum supported version is Windows 7. */
# define NTDDI_VERSION NTDDI_WIN7 # define NTDDI_VERSION NTDDI_WIN7
# define _WIN32_WINNT _WIN32_WINNT_WIN7 # define _WIN32_WINNT 0x0601 // _WIN32_WINNT_WIN7
#endif #endif
#ifdef _MSC_VER #ifdef _MSC_VER