diff options
author | Jamey Sharp <jamey@minilop.net> | 2006-02-27 11:03:13 -0800 |
---|---|---|
committer | Jamey Sharp <jamey@minilop.net> | 2006-02-27 11:03:13 -0800 |
commit | 8f991bdd389f6c419cb18cdaea966304529de165 (patch) | |
tree | ec1398c71a5e3e2551c493156253b1f08d237674 /src/xcbext.h | |
parent | 5e350126a728f3c0c3bc8d8673e5ad67dc174f79 (diff) |
Add XCB_REQUEST_RAW flag for XCBSendRequest.
Diffstat (limited to 'src/xcbext.h')
-rw-r--r-- | src/xcbext.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/xcbext.h b/src/xcbext.h index ddbb77a..72dff64 100644 --- a/src/xcbext.h +++ b/src/xcbext.h @@ -52,7 +52,8 @@ typedef struct { } XCBProtocolRequest; enum XCBSendRequestFlags { - XCB_REQUEST_CHECKED = 1 << 0 + XCB_REQUEST_CHECKED = 1 << 0, + XCB_REQUEST_RAW = 1 << 1 }; int XCBSendRequest(XCBConnection *c, unsigned int *sequence, int flags, struct iovec *vector, const XCBProtocolRequest *request); |