diff options
Diffstat (limited to 'src/xcbext.h')
-rw-r--r-- | src/xcbext.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/xcbext.h b/src/xcbext.h index c8f532c..ddbb77a 100644 --- a/src/xcbext.h +++ b/src/xcbext.h @@ -51,7 +51,11 @@ typedef struct { BOOL isvoid; } XCBProtocolRequest; -int XCBSendRequest(XCBConnection *c, unsigned int *sequence, struct iovec *vector, const XCBProtocolRequest *request); +enum XCBSendRequestFlags { + XCB_REQUEST_CHECKED = 1 << 0 +}; + +int XCBSendRequest(XCBConnection *c, unsigned int *sequence, int flags, struct iovec *vector, const XCBProtocolRequest *request); /* xcb_in.c */ |