msvc 2010 actually requires targeting winxp

This commit is contained in:
rdb 2013-10-07 15:56:12 +00:00
parent d265d9f434
commit acb97361db
1 changed files with 2 additions and 2 deletions

View File

@ -14,8 +14,8 @@
#define WINVER 0x0400 // Change this to the appropriate value to target Windows 98 and Windows 2000 or later.
#endif
#ifndef _WIN32_WINNT // Allow use of features specific to Windows NT 4 or later.
#define _WIN32_WINNT 0x0403 // Change this to the appropriate value to target Windows 2000 or later.
#ifndef _WIN32_WINNT // Allow use of features specific to Windows XP or later.
#define _WIN32_WINNT 0x0501 // 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.