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:
@@ -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_
|
||||
|
Reference in New Issue
Block a user