summaryrefslogtreecommitdiffstats
path: root/generic/tkIntXlibDecls.h
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2020-08-21 14:06:54 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2020-08-21 14:06:54 (GMT)
commitaa7b5aca7453deb72f795bcac257cb64ee9fe76e (patch)
tree5ab0edff8ccd94cacd9aba35feecb823a0548d67 /generic/tkIntXlibDecls.h
parentc3a1c1de43aa94d3bd7fafe4e993976573caa782 (diff)
parent6560e31a6006a2aec8c95564ec8287088c2e11de (diff)
downloadtk-aa7b5aca7453deb72f795bcac257cb64ee9fe76e.zip
tk-aa7b5aca7453deb72f795bcac257cb64ee9fe76e.tar.gz
tk-aa7b5aca7453deb72f795bcac257cb64ee9fe76e.tar.bz2
Merge 8.6
Diffstat (limited to 'generic/tkIntXlibDecls.h')
-rw-r--r--generic/tkIntXlibDecls.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/generic/tkIntXlibDecls.h b/generic/tkIntXlibDecls.h
index 774075d..ad5321c 100644
--- a/generic/tkIntXlibDecls.h
+++ b/generic/tkIntXlibDecls.h
@@ -765,7 +765,10 @@ EXTERN Status XIconifyWindow(Display *d, Window w, int i);
EXTERN Status XWithdrawWindow(Display *d, Window w, int i);
/* 105 */
EXTERN XHostAddress * XListHosts(Display *d, int *i, Bool *b);
-/* Slot 106 is reserved */
+/* 106 */
+EXTERN int XSetClipRectangles(Display *display, GC gc,
+ int clip_x_origin, int clip_y_origin,
+ XRectangle rectangles[], int n, int ordering);
/* 107 */
EXTERN int XFlush(Display *display);
/* 108 */
@@ -1162,7 +1165,7 @@ typedef struct TkIntXlibStubs {
Status (*xIconifyWindow) (Display *d, Window w, int i); /* 103 */
Status (*xWithdrawWindow) (Display *d, Window w, int i); /* 104 */
XHostAddress * (*xListHosts) (Display *d, int *i, Bool *b); /* 105 */
- void (*reserved106)(void);
+ int (*xSetClipRectangles) (Display *display, GC gc, int clip_x_origin, int clip_y_origin, XRectangle rectangles[], int n, int ordering); /* 106 */
int (*xFlush) (Display *display); /* 107 */
int (*xGrabServer) (Display *display); /* 108 */
int (*xUngrabServer) (Display *display); /* 109 */
@@ -1748,7 +1751,8 @@ extern const TkIntXlibStubs *tkIntXlibStubsPtr;
(tkIntXlibStubsPtr->xWithdrawWindow) /* 104 */
#define XListHosts \
(tkIntXlibStubsPtr->xListHosts) /* 105 */
-/* Slot 106 is reserved */
+#define XSetClipRectangles \
+ (tkIntXlibStubsPtr->xSetClipRectangles) /* 106 */
#define XFlush \
(tkIntXlibStubsPtr->xFlush) /* 107 */
#define XGrabServer \