diff options
author | mdejong <mdejong> | 2005-07-23 03:06:24 (GMT) |
---|---|---|
committer | mdejong <mdejong> | 2005-07-23 03:06:24 (GMT) |
commit | d08d277e0ffafe8c50c913ed6c83a74070542ae7 (patch) | |
tree | 0374fa7fc4e612f325eace071f0e34db280862f5 /win/tkWinX.c | |
parent | 412c61761cf4a0e5dcef5ffb597c7b5bca317a8b (diff) | |
download | tk-d08d277e0ffafe8c50c913ed6c83a74070542ae7.zip tk-d08d277e0ffafe8c50c913ed6c83a74070542ae7.tar.gz tk-d08d277e0ffafe8c50c913ed6c83a74070542ae7.tar.bz2 |
* win/tkWinX.c: Define _WIN32_WINNT with NT SP 3 data
to fix compiler error because SendInput was not defined.
The new msys_mingw7 release is now needed to compile
the HEAD with mingw gcc.
[Bug 1210712]
Diffstat (limited to 'win/tkWinX.c')
-rw-r--r-- | win/tkWinX.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win/tkWinX.c b/win/tkWinX.c index 5bbed97..a99932f 100644 --- a/win/tkWinX.c +++ b/win/tkWinX.c @@ -10,15 +10,15 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkWinX.c,v 1.47 2005/06/01 17:52:57 hobbs Exp $ + * RCS: @(#) $Id: tkWinX.c,v 1.48 2005/07/23 03:06:25 mdejong Exp $ */ /* - * Make sure the SendInput API is available: + * Make sure the SendInput API is available (NT SP 3): */ #if (_WIN32_WINNT <= 0x0400) #undef _WIN32_WINNT -#define _WIN32_WINNT 0x0401 +#define _WIN32_WINNT 0x0403 #endif #include "tkWinInt.h" |