aboutsummaryrefslogtreecommitdiff
path: root/generic/Types.h
diff options
context:
space:
mode:
Diffstat (limited to 'generic/Types.h')
-rw-r--r--generic/Types.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/generic/Types.h b/generic/Types.h
index f08ca15..6d42dfc 100644
--- a/generic/Types.h
+++ b/generic/Types.h
@@ -139,26 +139,34 @@ Tk_GetScrollInfo(interp, argc, (Tcl_Obj **) args, fract, count)
# pragma warning(disable : 4273)
# endif
#undef XFillRectangle
+#define XFillRectangle ZnXFillRectangle
void XFillRectangle(Display *display, Drawable d, GC gc, int x, int y,
unsigned int width, unsigned int height);
# undef XFillRectangles
+#define XFillRectangles ZnXFillRectangles
void XFillRectangles(Display *display, Drawable d, GC gc,
XRectangle* rectangles, int nrectangles);
# undef XFillArc
+#define XFillArc ZnXFillArc
void XFillArc(Display *display, Drawable d, GC gc, int x, int y, unsigned int width,
unsigned int height, int start, int extent);
# undef XFillPolygon
+#define XFillPolygon ZnXFillPolygon
void XFillPolygon(Display *display, Drawable d, GC gc, XPoint *points, int npoints,
int shape, int mode);
# undef XDrawRectangle
+#define XDrawRectangle ZnXDrawRectangle
void XDrawRectangle(Display *display, Drawable d, GC gc, int x, int y,
unsigned int width, unsigned int height);
# undef XDrawArc
+#define XDrawArc ZnXDrawArc
void XDrawArc(Display *display, Drawable d, GC gc, int x, int y,
unsigned int width, unsigned int height, int start, int extent);
# undef XDrawLine
+#define XDrawLine ZnXDrawLine
void XDrawLine(Display *display, Drawable d, GC gc, int x1, int y1, int x2, int y2);
# undef XDrawLines
+#define XDrawLines ZnXDrawLines
void XDrawLines(Display *display, Drawable d, GC gc, XPoint* points,
int npoints, int mode);