summaryrefslogtreecommitdiffstats
path: root/unix/tkUnixPort.h
diff options
context:
space:
mode:
authorjan.nijtmans <jan.nijtmans@noemail.net>2012-05-16 13:31:48 (GMT)
committerjan.nijtmans <jan.nijtmans@noemail.net>2012-05-16 13:31:48 (GMT)
commit291cf09bf40cbd7368a0ce29ad5d6a5a25370cf2 (patch)
tree34f7f531464329534828bc183ab4079b2de3a103 /unix/tkUnixPort.h
parent7c31f6048c61bc023a96ca04f8f42bada3804d9f (diff)
parent5668666cb48b5738cf6cfb74b80ae1240f5ea191 (diff)
downloadtk-291cf09bf40cbd7368a0ce29ad5d6a5a25370cf2.zip
tk-291cf09bf40cbd7368a0ce29ad5d6a5a25370cf2.tar.gz
tk-291cf09bf40cbd7368a0ce29ad5d6a5a25370cf2.tar.bz2
implement TkSetPixmapColormap and TkpPrintWindowId for cygwin
cleanup some more unused CYGWIN stuff FossilOrigin-Name: 578f0bf2460dddfa07277adf679f123ca72eba00
Diffstat (limited to 'unix/tkUnixPort.h')
-rw-r--r--unix/tkUnixPort.h24
1 files changed, 14 insertions, 10 deletions
diff --git a/unix/tkUnixPort.h b/unix/tkUnixPort.h
index 601ef57..bc432e7 100644
--- a/unix/tkUnixPort.h
+++ b/unix/tkUnixPort.h
@@ -113,15 +113,6 @@
# define NBBY 8
#endif
-/*
- * The TkPutImage macro strips off the color table information, which isn't
- * needed for X.
- */
-
-#define TkPutImage(colors, ncolors, display, pixels, gc, image, srcx, srcy, destx, desty, width, height) \
- XPutImage(display, pixels, gc, image, srcx, srcy, destx, \
- desty, width, height);
-
#ifdef __CYGWIN__
# define UINT unsigned int
# define HWND void *
@@ -135,6 +126,16 @@
# define WPARAM void *
# define LPARAM void *
# define LRESULT void *
+#else
+/*
+ * The TkPutImage macro strips off the color table information, which isn't
+ * needed for X.
+ */
+
+#define TkPutImage(colors, ncolors, display, pixels, gc, image, srcx, srcy, destx, desty, width, height) \
+ XPutImage(display, pixels, gc, image, srcx, srcy, destx, \
+ desty, width, height);
+
#endif
/*
@@ -167,7 +168,9 @@
#define TkpButtonSetDefaults() {}
#define TkpDestroyButton(butPtr) {}
#define TkSelUpdateClipboard(a,b) {}
+#ifndef __CYGWIN__
#define TkSetPixmapColormap(p,c) {}
+#endif
/*
* These calls implement native bitmaps which are not supported under
@@ -182,8 +185,9 @@
* This macro stores a representation of the window handle in a string.
* This should perhaps use the real size of an XID.
*/
-
+#ifndef __CYGWIN__
#define TkpPrintWindowId(buf,w) \
sprintf((buf), "%#08lx", (unsigned long) (w))
+#endif
#endif /* _UNIXPORT */