summaryrefslogtreecommitdiffstats
path: root/win/tkWinWm.c
diff options
context:
space:
mode:
authormdejong <mdejong>2004-09-23 00:35:08 (GMT)
committermdejong <mdejong>2004-09-23 00:35:08 (GMT)
commitde0d8e4322d9601ff5a95bf50c8d2c9d0065accf (patch)
tree4daebe3f6998ec5b4880303535f326a21ee1f9bb /win/tkWinWm.c
parentb9012c1e904d343fb878a71054b89170ae84f363 (diff)
downloadtk-de0d8e4322d9601ff5a95bf50c8d2c9d0065accf.zip
tk-de0d8e4322d9601ff5a95bf50c8d2c9d0065accf.tar.gz
tk-de0d8e4322d9601ff5a95bf50c8d2c9d0065accf.tar.bz2
* win/tkWinWm.c: Rework WS_EX_LAYERED and LWA_ALPHA
defines so that compiling with mingw works again.
Diffstat (limited to 'win/tkWinWm.c')
-rw-r--r--win/tkWinWm.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/win/tkWinWm.c b/win/tkWinWm.c
index bc5c387..67cfad2 100644
--- a/win/tkWinWm.c
+++ b/win/tkWinWm.c
@@ -12,17 +12,19 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tkWinWm.c,v 1.54.2.11 2004/09/21 00:08:56 hobbs Exp $
+ * RCS: @(#) $Id: tkWinWm.c,v 1.54.2.12 2004/09/23 00:35:09 mdejong Exp $
*/
#include "tkWinInt.h"
#include <shellapi.h>
-#ifndef WS_EX_LAYERED
/*
- * This is only valid on Win2K/XP+.
+ * These next two defines are only valid on Win2K/XP+.
*/
+#ifndef WS_EX_LAYERED
#define WS_EX_LAYERED 0x00080000
+#endif
+#ifndef LWA_ALPHA
#define LWA_ALPHA 0x00000002
#endif