diff options
Diffstat (limited to 'win/tkWin.h')
-rw-r--r-- | win/tkWin.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/win/tkWin.h b/win/tkWin.h index 4d278d7..ef579fe 100644 --- a/win/tkWin.h +++ b/win/tkWin.h @@ -18,14 +18,18 @@ * the SystemParametersInfo API doesn't like to receive structures that * are larger than it expects which affects the font assignments. * - * WINVER = 0x0500 means Windows 2000 and above + * WINVER = 0x0600 means Windows Vista and above. Even though we still + * support Windows XP, but the Vista-specifics are tested at runtime. */ #ifndef WINVER -#define WINVER 0x0500 +# define WINVER 0x0600 #endif #ifndef _WIN32_WINNT -#define _WIN32_WINNT 0x0500 +# define _WIN32_WINNT 0x0600 +#endif +#ifndef _WIN32_IE +# define _WIN32_IE 0x0700 #endif #ifndef _TK |