diff options
Diffstat (limited to 'win/tkWin.h')
-rw-r--r-- | win/tkWin.h | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/win/tkWin.h b/win/tkWin.h index d97adc7..adb943b 100644 --- a/win/tkWin.h +++ b/win/tkWin.h @@ -18,14 +18,14 @@ * the SystemParametersInfo API doesn't like to receive structures that * are larger than it expects which affects the font assignements. * - * WINVER = 0x0410 means Windows 98 and above + * WINVER = 0x0500 means Windows 2000 and above */ #ifndef WINVER -#define WINVER 0x0410 +#define WINVER 0x0500 #endif -#ifndef _WIN32_WINDOWS -#define _WIN32_WINDOWS 0x0410 +#ifndef _WIN32_WINNT +#define _WIN32_WINNT 0x0500 #endif #ifndef _TK @@ -36,11 +36,6 @@ #include <windows.h> #undef WIN32_LEAN_AND_MEAN -#ifdef BUILD_tk -# undef TCL_STORAGE_CLASS -# define TCL_STORAGE_CLASS DLLEXPORT -#endif - /* * The following messages are used to communicate between a Tk toplevel * and its container window. A Tk container may not be able to provide @@ -83,7 +78,4 @@ #include "tkPlatDecls.h" -# undef TCL_STORAGE_CLASS -# define TCL_STORAGE_CLASS DLLIMPORT - #endif /* _TKWIN */ |