1xcb_query_keymap(3) XCB Requests xcb_query_keymap(3)
2
3
4
6 xcb_query_keymap -
7
9 #include <xcb/xproto.h>
10
11 Request function
12 xcb_query_keymap_cookie_t xcb_query_keymap(xcb_connection_t *conn,
13
14 Reply datastructure
15 typedef struct xcb_query_keymap_reply_t {
16 uint8_t response_type;
17 uint8_t pad0;
18 uint16_t sequence;
19 uint32_t length;
20 uint8_t keys[32];
21 } xcb_query_keymap_reply_t;
22
23 Reply function
24 xcb_query_keymap_reply_t
25 *xcb_query_keymap_reply(xcb_connection_t *conn,
26 xcb_query_keymap_cookie_t cookie, xcb_generic_error_t **e);
27
29 conn The XCB connection to X11.
30
32 response_type
33 The type of this reply, in this case XCB_QUERY_KEYMAP. This
34 field is also present in the xcb_generic_reply_t and can be
35 used to tell replies apart from each other.
36
37 sequence The sequence number of the last request processed by the X11
38 server.
39
40 length The length of the reply, in words (a word is 4 bytes).
41
42 keys TODO: NOT YET DOCUMENTED.
43
46 Returns an xcb_query_keymap_cookie_t. Errors have to be handled when
47 calling the reply function xcb_query_keymap_reply.
48
49 If you want to handle errors in the event loop instead, use
50 xcb_query_keymap_unchecked. See xcb-requests(3) for details.
51
53 This request does never generate any errors.
54
57 Generated from xproto.xml. Contact xcb@lists.freedesktop.org for cor‐
58 rections and improvements.
59
60
61
62X Version 11 libxcb 1.13 xcb_query_keymap(3)