diff options
author | Руслан Ижбулатов <lrn1986@gmail.com> | 2015-04-29 07:24:35 +0000 |
---|---|---|
committer | Руслан Ижбулатов <lrn1986@gmail.com> | 2015-04-29 21:12:14 +0000 |
commit | 5ed5d11632960525f652e8e73085d42ccf5bc4c6 (patch) | |
tree | 568bde61e4be77b94cdd9e60458df3bed0951978 /gtk/gtkprintoperation-win32.c | |
parent | d44921a152d14371dded7ce6e2c5260fd065a66b (diff) | |
download | gtk+-5ed5d11632960525f652e8e73085d42ccf5bc4c6.tar.gz |
W32: bump _WIN32_WINNT and WINVER to 0x600 (Vista)
Move gdkprivate-win32.h include to ensure that this change affects gdkevents-win32.c
Diffstat (limited to 'gtk/gtkprintoperation-win32.c')
-rw-r--r-- | gtk/gtkprintoperation-win32.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gtk/gtkprintoperation-win32.c b/gtk/gtkprintoperation-win32.c index 64f7714263..28e2bda6e7 100644 --- a/gtk/gtkprintoperation-win32.c +++ b/gtk/gtkprintoperation-win32.c @@ -18,7 +18,8 @@ #ifndef _MSC_VER #ifndef _WIN32_WINNT -#define _WIN32_WINNT 0x0500 +/* Vista or newer */ +#define _WIN32_WINNT 0x0600 #endif #ifndef WINVER #define WINVER _WIN32_WINNT |