1xcb_res_query_client_pixmap_bytes(X3C)B Requesxtcsb_res_query_client_pixmap_bytes(3)
2
3
4
6 xcb_res_query_client_pixmap_bytes -
7
9 #include <xcb/res.h>
10
11 Request function
12 xcb_res_query_client_pixmap_bytes_cookie_t
13 xcb_res_query_client_pixmap_bytes(xcb_connection_t *conn,
14 uint32_t xid);
15
16 Reply datastructure
17 typedef struct xcb_res_query_client_pixmap_bytes_reply_t {
18 uint8_t response_type;
19 uint8_t pad0;
20 uint16_t sequence;
21 uint32_t length;
22 uint32_t bytes;
23 uint32_t bytes_overflow;
24 } xcb_res_query_client_pixmap_bytes_reply_t;
25
26 Reply function
27 xcb_res_query_client_pixmap_bytes_reply_t
28 *xcb_res_query_client_pixmap_bytes_reply(xcb_connection_t *conn,
29 xcb_res_query_client_pixmap_bytes_cookie_t cookie,
30 xcb_generic_error_t **e);
31
33 conn The XCB connection to X11.
34
35 xid TODO: NOT YET DOCUMENTED.
36
38 response_type
39 The type of this reply, in this case
40 XCB_RES_QUERY_CLIENT_PIXMAP_BYTES. This field is also present
41 in the xcb_generic_reply_t and can be used to tell replies
42 apart from each other.
43
44 sequence The sequence number of the last request processed by the X11
45 server.
46
47 length The length of the reply, in words (a word is 4 bytes).
48
49 bytes TODO: NOT YET DOCUMENTED.
50
51 bytes_overflow
52 TODO: NOT YET DOCUMENTED.
53
56 Returns an xcb_res_query_client_pixmap_bytes_cookie_t. Errors have to
57 be handled when calling the reply function
58 xcb_res_query_client_pixmap_bytes_reply.
59
60 If you want to handle errors in the event loop instead, use
61 xcb_res_query_client_pixmap_bytes_unchecked. See xcb-requests(3) for
62 details.
63
65 This request does never generate any errors.
66
69 Generated from res.xml. Contact xcb@lists.freedesktop.org for correcā
70 tions and improvements.
71
72
73
74X Version 11 libxcb 1.1x3c.b1_res_query_client_pixmap_bytes(3)