diff options
Diffstat (limited to 'libXext/src/XShm.c')
-rw-r--r-- | libXext/src/XShm.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libXext/src/XShm.c b/libXext/src/XShm.c index cffd30756..e4bc1f3e0 100644 --- a/libXext/src/XShm.c +++ b/libXext/src/XShm.c @@ -223,7 +223,7 @@ int XShmPixmapFormat(Display *dpy) }
-Status XShmAttach(Display *dpy, XShmSegmentInfo *shminfo)
+Bool XShmAttach(Display *dpy, XShmSegmentInfo *shminfo)
{
XExtDisplayInfo *info = find_display (dpy);
register xShmAttachReq *req;
@@ -243,7 +243,7 @@ Status XShmAttach(Display *dpy, XShmSegmentInfo *shminfo) }
-Status XShmDetach(Display *dpy, XShmSegmentInfo *shminfo)
+Bool XShmDetach(Display *dpy, XShmSegmentInfo *shminfo)
{
XExtDisplayInfo *info = find_display (dpy);
register xShmDetachReq *req;
@@ -312,7 +312,7 @@ XImage *XShmCreateImage ( return image;
}
-Status XShmPutImage (
+Bool XShmPutImage (
register Display *dpy,
Drawable d,
GC gc,
@@ -354,7 +354,7 @@ Status XShmPutImage ( }
-Status XShmGetImage(
+Bool XShmGetImage(
register Display *dpy,
Drawable d,
XImage *image,
|