diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-05-16 13:31:48 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-05-16 13:31:48 (GMT) |
commit | 1163ef54c110e4a57ccf168d955da777bf7a3525 (patch) | |
tree | 34f7f531464329534828bc183ab4079b2de3a103 /generic/tkGrab.c | |
parent | 2ef1eadbc983ba136d631cf4ac449b130d4af086 (diff) | |
parent | 4b5b028a16729b1caae6ec89ee2e8673958ad127 (diff) | |
download | tk-1163ef54c110e4a57ccf168d955da777bf7a3525.zip tk-1163ef54c110e4a57ccf168d955da777bf7a3525.tar.gz tk-1163ef54c110e4a57ccf168d955da777bf7a3525.tar.bz2 |
implement TkSetPixmapColormap and TkpPrintWindowId for cygwin
cleanup some more unused CYGWIN stuff
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 835beac..695690b 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 |