1xcb_shape_query_version(3) XCB Requests xcb_shape_query_version(3)
2
3
4
6 xcb_shape_query_version -
7
9 #include <xcb/shape.h>
10
11 Request function
12 xcb_shape_query_version_cookie_t
13 xcb_shape_query_version(xcb_connection_t *conn,
14
15 Reply datastructure
16 typedef struct xcb_shape_query_version_reply_t {
17 uint8_t response_type;
18 uint8_t pad0;
19 uint16_t sequence;
20 uint32_t length;
21 uint16_t major_version;
22 uint16_t minor_version;
23 } xcb_shape_query_version_reply_t;
24
25 Reply function
26 xcb_shape_query_version_reply_t
27 *xcb_shape_query_version_reply(xcb_connection_t *conn,
28 xcb_shape_query_version_cookie_t cookie,
29 xcb_generic_error_t **e);
30
32 conn The XCB connection to X11.
33
35 response_type
36 The type of this reply, in this case XCB_SHAPE_QUERY_VERSION.
37 This field is also present in the xcb_generic_reply_t and can
38 be used to tell replies apart from each other.
39
40 sequence The sequence number of the last request processed by the X11
41 server.
42
43 length The length of the reply, in words (a word is 4 bytes).
44
45 major_version
46 TODO: NOT YET DOCUMENTED.
47
48 minor_version
49 TODO: NOT YET DOCUMENTED.
50
53 Returns an xcb_shape_query_version_cookie_t. Errors have to be handled
54 when calling the reply function xcb_shape_query_version_reply.
55
56 If you want to handle errors in the event loop instead, use
57 xcb_shape_query_version_unchecked. See xcb-requests(3) for details.
58
60 This request does never generate any errors.
61
64 Generated from shape.xml. Contact xcb@lists.freedesktop.org for correcā
65 tions and improvements.
66
67
68
69X Version 11 libxcb 1.12 xcb_shape_query_version(3)