Add XCB_REQUEST_RAW flag for XCBSendRequest.
[free-sw/xcb/libxcb] / src / xcbext.h
index ddbb77a..72dff64 100644 (file)
@@ -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);