From d1085c018250c7e3a36c2e6a3dc3c396de5b6642 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 12 Feb 2016 18:58:42 +0100 Subject: [PATCH] Update WINVER and _WIN32_WINNT to use Windows 10 SDK values This allows to see the declarations of the functions new in Windows 8.x and 10 if they're available. --- include/wx/msw/wrapwin.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/wx/msw/wrapwin.h b/include/wx/msw/wrapwin.h index e6a56c7ba1..eb94226059 100644 --- a/include/wx/msw/wrapwin.h +++ b/include/wx/msw/wrapwin.h @@ -27,7 +27,7 @@ // before including windows.h, define version macros at (currently) maximal // values because we do all our checks at run-time anyhow #ifndef WINVER - #define WINVER 0x0600 + #define WINVER 0x0603 #endif // define _WIN32_WINNT and _WIN32_IE to the highest possible values because we @@ -36,7 +36,7 @@ // doesn't want to use APIs only available on later OS versions and had defined // them to (presumably lower) values #ifndef _WIN32_WINNT - #define _WIN32_WINNT 0x0600 + #define _WIN32_WINNT 0x0603 #endif #ifndef _WIN32_IE