API/ABI break: Add flags to XCBSendRequest, first for error-checked requests.
[free-sw/xcb/libxcb] / src / xcbint.h
index e8e98eb..670dd69 100644 (file)
@@ -112,13 +112,14 @@ typedef struct _xcb_in {
     _xcb_queue *events;
     _xcb_list *readers;
 
-    _xcb_queue *pending_replies;
+    struct pending_reply *pending_replies;
+    struct pending_reply **pending_replies_tail;
 } _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);