X-Git-Url: http://git.demorecorder.com/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fxcbint.h;h=eb1afc1a498887aba3341e97acdebf09ba21836f;hb=7875040fa179d8ca3fa4ec046c1b8c2a351a6621;hp=1d7b87378a0b11a43b4b8a1f8ad79025cda7ee6f;hpb=1b50d2ee1ef532429674126eace88ac73d51ec23;p=free-sw%2Fxcb%2Flibxcb diff --git a/src/xcbint.h b/src/xcbint.h index 1d7b873..eb1afc1 100644 --- a/src/xcbint.h +++ b/src/xcbint.h @@ -37,6 +37,8 @@ enum workarounds { WORKAROUND_GLX_GET_FB_CONFIGS_BUG }; +#define XCB_PAD(i) (-(i) & 3) + /* xcb_list.c */ typedef struct _xcb_list _xcb_list; @@ -68,17 +70,6 @@ void *_xcb_map_get(_xcb_map *q, unsigned int key); void *_xcb_map_remove(_xcb_map *q, unsigned int key); -/* xcb_util.c */ - -/* Index of nearest 4-byte boundary following E. */ -#define XCB_CEIL(E) (((E)+3)&~3) - -#define XCB_PAD(i) ((4 - (i & 3)) & 3) - -int _xcb_set_fd_flags(const int fd); -int _xcb_read_block(const int fd, void *buf, const size_t len); - - /* xcb_out.c */ typedef struct _xcb_out { @@ -121,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); @@ -151,7 +143,8 @@ void _xcb_xid_destroy(XCBConnection *c); typedef struct _xcb_ext { pthread_mutex_t lock; - _xcb_map *extensions; + struct lazyreply *extensions; + int extensions_size; } _xcb_ext; int _xcb_ext_init(XCBConnection *c);