diff options
author | Ian Osgood <iano@quirkster.com> | 2006-04-28 15:27:09 -0700 |
---|---|---|
committer | Ian Osgood <iano@quirkster.com> | 2006-04-28 15:27:09 -0700 |
commit | e6132aff2fdcd0ab1ef5d7ac84a3c597dc07d370 (patch) | |
tree | f8655a19317d44ffd70c5381222db7aa1466b2d0 /src/xcb.h | |
parent | 162c7593adf1577ca8aecfcd53fd5644b6182609 (diff) |
Move the remainder of the constants in X.h into XML enumerations.
Fix xcb_auth to use one of the new enumerations.
Diffstat (limited to 'src/xcb.h')
-rw-r--r-- | src/xcb.h | 20 |
1 files changed, 13 insertions, 7 deletions
@@ -83,13 +83,6 @@ extern "C" { #define XCB_TYPE_PAD(T,I) (-(I) & (sizeof(T) > 4 ? 3 : sizeof(T) - 1)) - -/** XCBNone is the universal null resource or null atom parameter value for many core X requests */ -#define XCBNone 0L - -/** XCBCopyFromParent can be used for many CreateWindow parameters */ -#define XCBCopyFromParent 0L - /* Opaque structures */ /** @@ -166,6 +159,19 @@ typedef struct { #include "xproto.h" +/** XCBNone is the universal null resource or null atom parameter value for many core X requests */ +#define XCBNone 0L + +/** XCBCopyFromParent can be used for many CreateWindow parameters */ +#define XCBCopyFromParent 0L + +/** XCBCurrentTime can be used in most requests that take an XCBTIMESTAMP */ +#define XCBCurrentTime 0L + +/** XCBNoSymbol fills in unused entries in XCBKEYSYM tables */ +#define XCBNoSymbol 0L + + /* xcb_auth.c */ /** |