summaryrefslogtreecommitdiff
path: root/src/xcbint.h
diff options
context:
space:
mode:
authorJamey Sharp <jamey@minilop.net>2006-02-26 02:00:03 -0800
committerJamey Sharp <jamey@minilop.net>2006-02-26 02:00:03 -0800
commit7875040fa179d8ca3fa4ec046c1b8c2a351a6621 (patch)
tree3bb16a7454a7335fb4a81051c35effe61d9c06f3 /src/xcbint.h
parenta1eff0c49a2dbb328a79edbeb2b851fa1dfe9e61 (diff)
Replace pending_replies generic queue with a hand-implemented typesafe version.
Diffstat (limited to 'src/xcbint.h')
-rw-r--r--src/xcbint.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/xcbint.h b/src/xcbint.h
index e8e98eb..eb1afc1 100644
--- a/src/xcbint.h
+++ b/src/xcbint.h
@@ -112,7 +112,8 @@ 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);