diff options
-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. */ |