1xcb_xkb_get_indicator_state(3) XCB Requests xcb_xkb_get_indicator_state(3)
2
3
4
6 xcb_xkb_get_indicator_state -
7
9 #include <xcb/xkb.h>
10
11 Request function
12 xcb_xkb_get_indicator_state_cookie_t
13 xcb_xkb_get_indicator_state(xcb_connection_t *conn,
14 xcb_xkb_device_spec_t deviceSpec);
15
16 Reply datastructure
17 typedef struct xcb_xkb_get_indicator_state_reply_t {
18 uint8_t response_type;
19 uint8_t deviceID;
20 uint16_t sequence;
21 uint32_t length;
22 uint32_t state;
23 uint8_t pad0[20];
24 } xcb_xkb_get_indicator_state_reply_t;
25
26 Reply function
27 xcb_xkb_get_indicator_state_reply_t
28 *xcb_xkb_get_indicator_state_reply(xcb_connection_t *conn,
29 xcb_xkb_get_indicator_state_cookie_t cookie,
30 xcb_generic_error_t **e);
31
33 conn The XCB connection to X11.
34
35 deviceSpec
36 TODO: NOT YET DOCUMENTED.
37
39 response_type
40 The type of this reply, in this case XCB_XKB_GET_INDICA‐
41 TOR_STATE. This field is also present in the xcb_generic_re‐
42 ply_t and can be used to tell replies 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 deviceID TODO: NOT YET DOCUMENTED.
50
51 state TODO: NOT YET DOCUMENTED.
52
55 Returns an xcb_xkb_get_indicator_state_cookie_t. Errors have to be han‐
56 dled when calling the reply function xcb_xkb_get_indicator_state_reply.
57
58 If you want to handle errors in the event loop instead, use
59 xcb_xkb_get_indicator_state_unchecked. See xcb-requests(3) for details.
60
62 This request does never generate any errors.
63
66 Generated from xkb.xml. Contact xcb@lists.freedesktop.org for correc‐
67 tions and improvements.
68
69
70
71X Version 11 libxcb 1.13 xcb_xkb_get_indicator_state(3)