summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormdejong <mdejong@noemail.net>2005-07-23 03:06:24 (GMT)
committermdejong <mdejong@noemail.net>2005-07-23 03:06:24 (GMT)
commit3d7b2be382c2e5fe292b2c8e99edbb086d09eda1 (patch)
tree0374fa7fc4e612f325eace071f0e34db280862f5
parentb80f4d659218739ef2b8ddae0a7ab93f97ac7869 (diff)
downloadtk-3d7b2be382c2e5fe292b2c8e99edbb086d09eda1.zip
tk-3d7b2be382c2e5fe292b2c8e99edbb086d09eda1.tar.gz
tk-3d7b2be382c2e5fe292b2c8e99edbb086d09eda1.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] FossilOrigin-Name: 2e9585f5fd7884eca7fe3b189fd187ce4a066765
-rw-r--r--ChangeLog8
-rw-r--r--win/tkWinX.c6
2 files changed, 11 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index bb3e0c6..dd90a41 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2005-07-22 Mo DeJong <mdejong@users.sourceforge.net>
+
+ * 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]
+
2005-07-21 Jeff Hobbs <jeffh@ActiveState.com>
* macosx/tkMacOSXMouseEvent.c (TkMacOSXProcessMouseEvent):
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"