diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-05-16 04:43:33 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-05-16 04:43:33 (GMT) |
commit | c29a2d58d9c3de29bcd7e88011aea2b9c1bcd92e (patch) | |
tree | 3226d16f16893c081407f46d5428da95599d1df2 /generic/tkGrab.c | |
parent | 20eb2bdf3b3b8c32a82eded717c2383cf1746e46 (diff) | |
parent | 524f59a75aab742a5ce54b6497bec8e3bda8dced (diff) | |
download | tk-c29a2d58d9c3de29bcd7e88011aea2b9c1bcd92e.zip tk-c29a2d58d9c3de29bcd7e88011aea2b9c1bcd92e.tar.gz tk-c29a2d58d9c3de29bcd7e88011aea2b9c1bcd92e.tar.bz2 |
implement TkSetPixmapColormap and TkpPrintWindowId for cygwin
Diffstat (limited to 'generic/tkGrab.c')
-rw-r--r-- | generic/tkGrab.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/generic/tkGrab.c b/generic/tkGrab.c index 57f8614..44a4f8c 100644 --- a/generic/tkGrab.c +++ b/generic/tkGrab.c @@ -12,7 +12,9 @@ #include "tkInt.h" -#if !(defined(__WIN32__) || defined(MAC_OSX_TK)) +#ifdef __WIN32__ +#include "tkWinInt.h" +#elif !(defined(__WIN32__) || defined(MAC_OSX_TK)) #include "tkUnixInt.h" #endif |