diff options
author | nijtmans <nijtmans> | 2010-09-13 08:11:57 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2010-09-13 08:11:57 (GMT) |
commit | 1e5b720a72ebcd64290aee0d27fad33f73f6c169 (patch) | |
tree | 708de8d11188c470730291392fbc6e0729ace80d /win/tkWin.h | |
parent | 2d9b29197a1dbb4d152e669eb2e51f156a2c29cd (diff) | |
download | tk-1e5b720a72ebcd64290aee0d27fad33f73f6c169.zip tk-1e5b720a72ebcd64290aee0d27fad33f73f6c169.tar.gz tk-1e5b720a72ebcd64290aee0d27fad33f73f6c169.tar.bz2 |
Move definitions of WINVER/_WIN32_WINNT to one place, now that we only support Win2000+
Diffstat (limited to 'win/tkWin.h')
-rw-r--r-- | win/tkWin.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/win/tkWin.h b/win/tkWin.h index ae03a93..08d6184 100644 --- a/win/tkWin.h +++ b/win/tkWin.h @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkWin.h,v 1.16 2010/04/29 15:28:04 nijtmans Exp $ + * RCS: @(#) $Id: tkWin.h,v 1.17 2010/09/13 08:11:59 nijtmans Exp $ */ #ifndef _TKWIN @@ -24,10 +24,10 @@ */ #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 |