MSVC 2010 requires _WIN32_WINNT to be defined to 0x0403 or higher.

This commit is contained in:
rdb 2013-10-07 15:34:34 +00:00
parent f1d550bfd8
commit d265d9f434

View File

@ -15,7 +15,7 @@
#endif
#ifndef _WIN32_WINNT // Allow use of features specific to Windows NT 4 or later.
#define _WIN32_WINNT 0x0400 // Change this to the appropriate value to target Windows 2000 or later.
#define _WIN32_WINNT 0x0403 // Change this to the appropriate value to target Windows 2000 or later.
#endif
#ifndef _WIN32_WINDOWS // Allow use of features specific to Windows 98 or later.