diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2009-05-03 12:54:41 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2009-05-03 12:54:41 +0000 |
commit | df8d13bc873527069d0e7b2396638af253b48763 (patch) | |
tree | 81a2da9af9094d280a36457491bf892ec929e9ad /proto/xextproto | |
parent | 5aea67f4d63f8155ab91e1c748132c7b75477534 (diff) |
update to xextproto 7.0.4
Diffstat (limited to 'proto/xextproto')
-rw-r--r-- | proto/xextproto/ChangeLog | 24 | ||||
-rw-r--r-- | proto/xextproto/Xge.h | 1 | ||||
-rw-r--r-- | proto/xextproto/configure.ac | 2 | ||||
-rw-r--r-- | proto/xextproto/geproto.h | 30 |
4 files changed, 41 insertions, 16 deletions
diff --git a/proto/xextproto/ChangeLog b/proto/xextproto/ChangeLog index d6b7bcfb1..b19bb5e98 100644 --- a/proto/xextproto/ChangeLog +++ b/proto/xextproto/ChangeLog @@ -1,3 +1,27 @@ +commit e1773d8ad7d36535f856dcb308be9a1b0601c1fc +Author: Peter Hutterer <peter.hutterer@who-t.net> +Date: Thu Dec 18 10:10:42 2008 +1000 + + Bump to 7.0.4 + +commit e7f0c4261c59da82da1c151dd1bd0d143a32906a +Author: Peter Hutterer <peter.hutterer@redhat.com> +Date: Mon Dec 1 14:44:03 2008 +1000 + + Clean up XGE documentation. + +commit b0080664e432f8ee569ce099a536c0232dd64d3e +Author: Peter Hutterer <peter.hutterer@redhat.com> +Date: Mon Dec 1 15:41:16 2008 +1000 + + geproto: remote trailing whitespaces. + +commit f7e5f23e37e62cc0a981d9b002b69d90b8a7daa9 +Author: Peter Hutterer <peter.hutterer@redhat.com> +Date: Fri Sep 26 14:54:19 2008 +0930 + + Xge.h: include Xmd.h for CARD8 + commit db08133016b421ef12c65db9c4a2819078f01b06 Author: Peter Hutterer <peter@cs.unisa.edu.au> Date: Wed May 28 17:18:14 2008 +0930 diff --git a/proto/xextproto/Xge.h b/proto/xextproto/Xge.h index dd58079c9..1893b6cb9 100644 --- a/proto/xextproto/Xge.h +++ b/proto/xextproto/Xge.h @@ -30,6 +30,7 @@ #ifndef _XGE_H_ #define _XGE_H_ +#include <X11/Xmd.h> #include <X11/Xlib.h> #include <X11/Xfuncproto.h> diff --git a/proto/xextproto/configure.ac b/proto/xextproto/configure.ac index 8f0c24227..72205e42b 100644 --- a/proto/xextproto/configure.ac +++ b/proto/xextproto/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ([2.57]) -AC_INIT([XExtProto], [7.0.3], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg]) +AC_INIT([XExtProto], [7.0.4], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg]) AM_INIT_AUTOMAKE([foreign dist-bzip2]) XORG_RELEASE_VERSION diff --git a/proto/xextproto/geproto.h b/proto/xextproto/geproto.h index 54107df8f..c8860dd87 100644 --- a/proto/xextproto/geproto.h +++ b/proto/xextproto/geproto.h @@ -42,7 +42,7 @@ /********************************************************* * - * XGE protocol requests/replies + * XGE protocol requests/replies * */ @@ -56,9 +56,9 @@ typedef struct { /* QueryVersion */ typedef struct { - CARD8 reqType; /* input extension major code */ - CARD8 ReqType; /* always X_GEQueryVersion */ - CARD16 length B16; + CARD8 reqType; /* input extension major code */ + CARD8 ReqType; /* always X_GEQueryVersion */ + CARD16 length B16; CARD16 majorVersion B16; CARD16 minorVersion B16; } xGEQueryVersionReq; @@ -66,17 +66,17 @@ typedef struct { #define sz_xGEQueryVersionReq 8 typedef struct { - CARD8 repType; /* X_Reply */ - CARD8 RepType; /* always X_GEQueryVersion */ - CARD16 sequenceNumber B16; - CARD32 length B32; - CARD16 majorVersion B16; - CARD16 minorVersion B16; - CARD32 pad00 B32; - CARD32 pad01 B32; - CARD32 pad02 B32; - CARD32 pad03 B32; - CARD32 pad04 B32; + CARD8 repType; /* X_Reply */ + CARD8 RepType; /* always X_GEQueryVersion */ + CARD16 sequenceNumber B16; + CARD32 length B32; + CARD16 majorVersion B16; + CARD16 minorVersion B16; + CARD32 pad00 B32; + CARD32 pad01 B32; + CARD32 pad02 B32; + CARD32 pad03 B32; + CARD32 pad04 B32; } xGEQueryVersionReply; #define sz_xGEQueryVersionReply 32 |