diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-03-07 20:18:48 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-03-07 20:18:48 (GMT) |
commit | acd5c4da2bafcf9f001a0bc72e1554fb47224266 (patch) | |
tree | 703251f465e211d01c0edd12b16c99e69449c0cb /win | |
parent | 36d2d21ef756fd3321cecf1e7b278ee2d2c8a8dd (diff) | |
parent | ef521914f66d6d6f13f5f82e630994ec04bcc004 (diff) | |
download | tcl-acd5c4da2bafcf9f001a0bc72e1554fb47224266.zip tcl-acd5c4da2bafcf9f001a0bc72e1554fb47224266.tar.gz tcl-acd5c4da2bafcf9f001a0bc72e1554fb47224266.tar.bz2 |
DWORD_PTR typedef after <windows.h>
Diffstat (limited to 'win')
-rw-r--r-- | win/tclWinPort.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/win/tclWinPort.h b/win/tclWinPort.h index c29e175..e5dac8c 100644 --- a/win/tclWinPort.h +++ b/win/tclWinPort.h @@ -19,12 +19,6 @@ # define _USE_32BIT_TIME_T #endif -/* Compatibility to older visual studio / windows platform SDK */ -#if !defined(MAXULONG_PTR) -typedef DWORD DWORD_PTR; -typedef DWORD_PTR * PDWORD_PTR; -#endif - /* * We must specify the lower version we intend to support. * @@ -42,6 +36,12 @@ typedef DWORD_PTR * PDWORD_PTR; #include <windows.h> #undef WIN32_LEAN_AND_MEAN +/* Compatibility to older visual studio / windows platform SDK */ +#if !defined(MAXULONG_PTR) +typedef DWORD DWORD_PTR; +typedef DWORD_PTR * PDWORD_PTR; +#endif + /* * Ask for the winsock function typedefs, also. */ |