From 3afc2790b89fd3e489d6e995c4af05e0e23387a0 Mon Sep 17 00:00:00 2001 From: Maarten Date: Sat, 8 Apr 2017 21:48:47 +0200 Subject: [PATCH] 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. --- include/wx/msw/winver.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/wx/msw/winver.h b/include/wx/msw/winver.h index 90ee7bf46c..bd9536d708 100644 --- a/include/wx/msw/winver.h +++ b/include/wx/msw/winver.h @@ -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_