diff options
author | Jamey Sharp <jamey@minilop.net> | 2006-02-26 02:00:03 -0800 |
---|---|---|
committer | Jamey Sharp <jamey@minilop.net> | 2006-02-26 02:00:03 -0800 |
commit | 7875040fa179d8ca3fa4ec046c1b8c2a351a6621 (patch) | |
tree | 3bb16a7454a7335fb4a81051c35effe61d9c06f3 /src/xcbint.h | |
parent | a1eff0c49a2dbb328a79edbeb2b851fa1dfe9e61 (diff) |
Replace pending_replies generic queue with a hand-implemented typesafe version.
Diffstat (limited to 'src/xcbint.h')
-rw-r--r-- | src/xcbint.h | 3 |
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); |