1xcb_xkb_per_client_flags(3) XCB Requests xcb_xkb_per_client_flags(3)
2
3
4
6 xcb_xkb_per_client_flags -
7
9 #include <xcb/xkb.h>
10
11 Request function
12 xcb_xkb_per_client_flags_cookie_t
13 xcb_xkb_per_client_flags(xcb_connection_t *conn,
14 xcb_xkb_device_spec_t deviceSpec, uint32_t change,
15 uint32_t value, uint32_t ctrlsToChange, uint32_t autoCtrls,
16 uint32_t autoCtrlsValues);
17
18 Reply datastructure
19 typedef struct xcb_xkb_per_client_flags_reply_t {
20 uint8_t response_type;
21 uint8_t deviceID;
22 uint16_t sequence;
23 uint32_t length;
24 uint32_t supported;
25 uint32_t value;
26 uint32_t autoCtrls;
27 uint32_t autoCtrlsValues;
28 uint8_t pad0[8];
29 } xcb_xkb_per_client_flags_reply_t;
30
31 Reply function
32 xcb_xkb_per_client_flags_reply_t
33 *xcb_xkb_per_client_flags_reply(xcb_connection_t *conn,
34 xcb_xkb_per_client_flags_cookie_t cookie,
35 xcb_generic_error_t **e);
36
38 conn The XCB connection to X11.
39
40 deviceSpec
41 TODO: NOT YET DOCUMENTED.
42
43 change TODO: NOT YET DOCUMENTED.
44
45 value TODO: NOT YET DOCUMENTED.
46
47 ctrlsToChange
48 TODO: NOT YET DOCUMENTED.
49
50 autoCtrls TODO: NOT YET DOCUMENTED.
51
52 autoCtrlsValues
53 TODO: NOT YET DOCUMENTED.
54
56 response_type
57 The type of this reply, in this case
58 XCB_XKB_PER_CLIENT_FLAGS. This field is also present in the
59 xcb_generic_reply_t and can be used to tell replies apart
60 from each other.
61
62 sequence The sequence number of the last request processed by the X11
63 server.
64
65 length The length of the reply, in words (a word is 4 bytes).
66
67 deviceID TODO: NOT YET DOCUMENTED.
68
69 supported TODO: NOT YET DOCUMENTED.
70
71 value TODO: NOT YET DOCUMENTED.
72
73 autoCtrls TODO: NOT YET DOCUMENTED.
74
75 autoCtrlsValues
76 TODO: NOT YET DOCUMENTED.
77
80 Returns an xcb_xkb_per_client_flags_cookie_t. Errors have to be handled
81 when calling the reply function xcb_xkb_per_client_flags_reply.
82
83 If you want to handle errors in the event loop instead, use
84 xcb_xkb_per_client_flags_unchecked. See xcb-requests(3) for details.
85
87 This request does never generate any errors.
88
91 Generated from xkb.xml. Contact xcb@lists.freedesktop.org for correcā
92 tions and improvements.
93
94
95
96X Version 11 libxcb 1.13 xcb_xkb_per_client_flags(3)