summaryrefslogtreecommitdiffstats
path: root/win/tkWin.h
diff options
context:
space:
mode:
Diffstat (limited to 'win/tkWin.h')
-rw-r--r--win/tkWin.h12
1 files changed, 3 insertions, 9 deletions
diff --git a/win/tkWin.h b/win/tkWin.h
index 86be2e9..4d278d7 100644
--- a/win/tkWin.h
+++ b/win/tkWin.h
@@ -18,20 +18,14 @@
* the SystemParametersInfo API doesn't like to receive structures that
* are larger than it expects which affects the font assignments.
*
- * NTDDI_VERSION = 0x0600 means Windows Vista and above
+ * WINVER = 0x0500 means Windows 2000 and above
*/
-#ifndef NTDDI_VERSION
-#define NTDDI_VERSION 0x06000000
-#endif
#ifndef WINVER
-#define WINVER 0x0600
+#define WINVER 0x0500
#endif
#ifndef _WIN32_WINNT
-#define _WIN32_WINNT 0x0600
-#endif
-#ifndef _WIN32_IE
-#define _WIN32_IE 0x0600
+#define _WIN32_WINNT 0x0500
#endif
#ifndef _TK