summaryrefslogtreecommitdiff
path: root/include/X11/extensions/xf86bigfproto.h
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2018-06-16 14:34:14 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2018-11-10 12:31:50 -0800
commit641db34376d18ed5b76ff8883284bef4898d71be (patch)
tree6005c776825c1a869140b276cea32c839c53c239 /include/X11/extensions/xf86bigfproto.h
parentaf9b5f43439378efd1e12d11d487a71f42790fec (diff)
Remove the use of no-op B16 & B32 bitfield macros in headers
These have always done nothing on all platforms except CRAY. As https://bugs.freedesktop.org/show_bug.cgi?id=45202 points out we don't even detect when they've been wrong for decades. Performed via: find include -name '*.h' | grep -v md.h | xargs perl -i -p -e 's{\s+B\d+}{}g' followed by manual whitespace fixups to preserve visual alignment. The #defines for B16 & B32 are left in place to preserve compatibility in any code that used them outside the xorgproto repo. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Acked-by: Keith Packard <keithp@keithp.com> Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
Diffstat (limited to 'include/X11/extensions/xf86bigfproto.h')
-rw-r--r--include/X11/extensions/xf86bigfproto.h54
1 files changed, 27 insertions, 27 deletions
diff --git a/include/X11/extensions/xf86bigfproto.h b/include/X11/extensions/xf86bigfproto.h
index c041c9a..a0710dd 100644
--- a/include/X11/extensions/xf86bigfproto.h
+++ b/include/X11/extensions/xf86bigfproto.h
@@ -20,22 +20,22 @@
typedef struct _XF86BigfontQueryVersion {
CARD8 reqType; /* always XF86BigfontReqCode */
CARD8 xf86bigfontReqType; /* always X_XF86BigfontQueryVersion */
- CARD16 length B16;
+ CARD16 length;
} xXF86BigfontQueryVersionReq;
#define sz_xXF86BigfontQueryVersionReq 4
typedef struct {
BYTE type; /* X_Reply */
CARD8 capabilities;
- CARD16 sequenceNumber B16;
- CARD32 length B32;
- CARD16 majorVersion B16; /* major version of XFree86-Bigfont */
- CARD16 minorVersion B16; /* minor version of XFree86-Bigfont */
- CARD32 uid B32;
- CARD32 gid B32;
- CARD32 signature B32;
- CARD32 pad1 B32;
- CARD32 pad2 B32;
+ CARD16 sequenceNumber;
+ CARD32 length;
+ CARD16 majorVersion; /* major version of XFree86-Bigfont */
+ CARD16 minorVersion; /* minor version of XFree86-Bigfont */
+ CARD32 uid;
+ CARD32 gid;
+ CARD32 signature;
+ CARD32 pad1;
+ CARD32 pad2;
} xXF86BigfontQueryVersionReply;
#define sz_xXF86BigfontQueryVersionReply 32
@@ -45,39 +45,39 @@ typedef struct {
typedef struct _XF86BigfontQueryFont {
CARD8 reqType; /* always XF86BigfontReqCode */
CARD8 xf86bigfontReqType; /* always X_XF86BigfontQueryFont */
- CARD16 length B16;
- CARD32 id B32;
- CARD32 flags B32;
+ CARD16 length;
+ CARD32 id;
+ CARD32 flags;
} xXF86BigfontQueryFontReq;
#define sz_xXF86BigfontQueryFontReq 12
typedef struct {
BYTE type; /* X_Reply */
CARD8 pad1;
- CARD16 sequenceNumber B16;
- CARD32 length B32;
+ CARD16 sequenceNumber;
+ CARD32 length;
xCharInfo minBounds;
#ifndef WORD64
- CARD32 walign1 B32;
+ CARD32 walign1;
#endif
xCharInfo maxBounds;
#ifndef WORD64
- CARD32 walign2 B32;
+ CARD32 walign2;
#endif
- CARD16 minCharOrByte2 B16;
- CARD16 maxCharOrByte2 B16;
- CARD16 defaultChar B16;
- CARD16 nFontProps B16;
+ CARD16 minCharOrByte2;
+ CARD16 maxCharOrByte2;
+ CARD16 defaultChar;
+ CARD16 nFontProps;
CARD8 drawDirection;
CARD8 minByte1;
CARD8 maxByte1;
BOOL allCharsExist;
- INT16 fontAscent B16;
- INT16 fontDescent B16;
- CARD32 nCharInfos B32;
- CARD32 nUniqCharInfos B32;
- CARD32 shmid B32;
- CARD32 shmsegoffset B32;
+ INT16 fontAscent;
+ INT16 fontDescent;
+ CARD32 nCharInfos;
+ CARD32 nUniqCharInfos;
+ CARD32 shmid;
+ CARD32 shmsegoffset;
/* followed by nFontProps xFontProp structures */
/* and if nCharInfos > 0 && shmid == -1,
followed by nUniqCharInfos xCharInfo structures