diff options
author | Jamey Sharp <jamey@minilop.net> | 2006-02-26 18:28:50 -0800 |
---|---|---|
committer | Jamey Sharp <jamey@minilop.net> | 2006-02-26 18:28:50 -0800 |
commit | 0f130b4d945a27fd2b4655c351ebe70d61cac598 (patch) | |
tree | 8302e79396e3e60d4b1394529550a8ed87bb1d28 /src/xcbint.h | |
parent | ff7b6c9124e7caf26381cc7a10fba9eaf1875652 (diff) |
Replace events generic queue with hand-written 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 670dd69..6a61d18 100644 --- a/src/xcbint.h +++ b/src/xcbint.h @@ -109,7 +109,8 @@ typedef struct _xcb_in { _xcb_queue *current_reply; _xcb_map *replies; - _xcb_queue *events; + struct event_list *events; + struct event_list **events_tail; _xcb_list *readers; struct pending_reply *pending_replies; |