1xcb_xkb_get_indicator_map(3) XCB Requests xcb_xkb_get_indicator_map(3)
2
3
4
6 xcb_xkb_get_indicator_map -
7
9 #include <xcb/xkb.h>
10
11 Request function
12 xcb_xkb_get_indicator_map_cookie_t
13 xcb_xkb_get_indicator_map(xcb_connection_t *conn,
14 xcb_xkb_device_spec_t deviceSpec, uint32_t which);
15
16 Reply datastructure
17 typedef struct xcb_xkb_get_indicator_map_reply_t {
18 uint8_t response_type;
19 uint8_t deviceID;
20 uint16_t sequence;
21 uint32_t length;
22 uint32_t which;
23 uint32_t realIndicators;
24 uint8_t nIndicators;
25 uint8_t pad0[15];
26 } xcb_xkb_get_indicator_map_reply_t;
27
28 Reply function
29 xcb_xkb_get_indicator_map_reply_t
30 *xcb_xkb_get_indicator_map_reply(xcb_connection_t *conn,
31 xcb_xkb_get_indicator_map_cookie_t cookie,
32 xcb_generic_error_t **e);
33
34 Reply accessors
35 xcb_xkb_indicator_map_t *xcb_xkb_get_indicator_map_maps(const
36 xcb_xkb_get_indicator_map_request_t *reply);
37
38 int xcb_xkb_get_indicator_map_maps_length(const
39 xcb_xkb_get_indicator_map_reply_t *reply);
40
41 xcb_xkb_indicator_map_iterator_t
42 xcb_xkb_get_indicator_map_maps_iterator(const
43 xcb_xkb_get_indicator_map_reply_t *reply);
44
46 conn The XCB connection to X11.
47
48 deviceSpec
49 TODO: NOT YET DOCUMENTED.
50
51 which TODO: NOT YET DOCUMENTED.
52
54 response_type
55 The type of this reply, in this case XCB_XKB_GET_INDICA‐
56 TOR_MAP. This field is also present in the xcb_generic_re‐
57 ply_t and can be used to tell replies apart from each other.
58
59 sequence The sequence number of the last request processed by the X11
60 server.
61
62 length The length of the reply, in words (a word is 4 bytes).
63
64 deviceID TODO: NOT YET DOCUMENTED.
65
66 which TODO: NOT YET DOCUMENTED.
67
68 realIndicators
69 TODO: NOT YET DOCUMENTED.
70
71 nIndicators
72 TODO: NOT YET DOCUMENTED.
73
76 Returns an xcb_xkb_get_indicator_map_cookie_t. Errors have to be han‐
77 dled when calling the reply function xcb_xkb_get_indicator_map_reply.
78
79 If you want to handle errors in the event loop instead, use
80 xcb_xkb_get_indicator_map_unchecked. See xcb-requests(3) for details.
81
83 This request does never generate any errors.
84
87 Generated from xkb.xml. Contact xcb@lists.freedesktop.org for correc‐
88 tions and improvements.
89
90
91
92X Version 11 libxcb 1.12 xcb_xkb_get_indicator_map(3)