diff options
author | Jamey Sharp <jamey@minilop.net> | 2006-02-26 15:45:08 -0800 |
---|---|---|
committer | Jamey Sharp <jamey@minilop.net> | 2006-02-26 15:45:08 -0800 |
commit | ff7b6c9124e7caf26381cc7a10fba9eaf1875652 (patch) | |
tree | f1367b49ecd4ee798abac6f20219b25300a07adb /src/xcbint.h | |
parent | 7875040fa179d8ca3fa4ec046c1b8c2a351a6621 (diff) |
API/ABI break: Add flags to XCBSendRequest, first for error-checked requests.
There's no more race condition between event and reply handling.
The *RequestBlind and *RequestChecked functions are not yet implemented.
Diffstat (limited to 'src/xcbint.h')
-rw-r--r-- | src/xcbint.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xcbint.h b/src/xcbint.h index eb1afc1..670dd69 100644 --- a/src/xcbint.h +++ b/src/xcbint.h @@ -119,7 +119,7 @@ typedef struct _xcb_in { int _xcb_in_init(_xcb_in *in); void _xcb_in_destroy(_xcb_in *in); -int _xcb_in_expect_reply(XCBConnection *c, unsigned int request, enum workarounds workaround); +int _xcb_in_expect_reply(XCBConnection *c, unsigned int request, enum workarounds workaround, int flags); int _xcb_in_read(XCBConnection *c); int _xcb_in_read_block(XCBConnection *c, void *buf, int nread); |