Target latest Windows API in wxMSW

Update WINVER and similar definitions to use the latest 0x0a00 value
corresponding to Windows 10 instead of the old Windows 8.1 values.
This commit is contained in:
Maarten
2017-04-08 21:48:47 +02:00
committed by VZ
parent 3ae438b9ac
commit 3afc2790b8

View File

@@ -22,15 +22,15 @@
// even higher version of the API which will become available later.
#ifndef WINVER
#define WINVER 0x0603
#define WINVER 0x0A00
#endif
#ifndef _WIN32_WINNT
#define _WIN32_WINNT 0x0603
#define _WIN32_WINNT 0x0A00
#endif
#ifndef _WIN32_IE
#define _WIN32_IE 0x0700
#define _WIN32_IE 0x0A00
#endif
#endif // _WX_MSW_WINVER_H_