1xcb_input_set_device_valuators(3)XCB Requestsxcb_input_set_device_valuators(3)
2
3
4
6 xcb_input_set_device_valuators -
7
9 #include <xcb/xinput.h>
10
11 Request function
12 xcb_input_set_device_valuators_cookie_t
13 xcb_input_set_device_valuators(xcb_connection_t *conn,
14 uint8_t device_id, uint8_t first_valuator,
15 uint8_t num_valuators, const int32_t *valuators);
16
17 Reply datastructure
18 typedef struct xcb_input_set_device_valuators_reply_t {
19 uint8_t response_type;
20 uint8_t xi_reply_type;
21 uint16_t sequence;
22 uint32_t length;
23 uint8_t status;
24 uint8_t pad0[23];
25 } xcb_input_set_device_valuators_reply_t;
26
27 Reply function
28 xcb_input_set_device_valuators_reply_t
29 *xcb_input_set_device_valuators_reply(xcb_connection_t *conn,
30 xcb_input_set_device_valuators_cookie_t cookie,
31 xcb_generic_error_t **e);
32
34 conn The XCB connection to X11.
35
36 device_id TODO: NOT YET DOCUMENTED.
37
38 first_valuator
39 TODO: NOT YET DOCUMENTED.
40
41 num_valuators
42 TODO: NOT YET DOCUMENTED.
43
44 valuators TODO: NOT YET DOCUMENTED.
45
47 response_type
48 The type of this reply, in this case XCB_INPUT_SET_DE‐
49 VICE_VALUATORS. This field is also present in the xcb_gener‐
50 ic_reply_t and can be used to tell replies apart from each
51 other.
52
53 sequence The sequence number of the last request processed by the X11
54 server.
55
56 length The length of the reply, in words (a word is 4 bytes).
57
58 xi_reply_type
59 TODO: NOT YET DOCUMENTED.
60
61 status TODO: NOT YET DOCUMENTED.
62
65 Returns an xcb_input_set_device_valuators_cookie_t. Errors have to be
66 handled when calling the reply function xcb_input_set_device_valua‐
67 tors_reply.
68
69 If you want to handle errors in the event loop instead, use xcb_in‐
70 put_set_device_valuators_unchecked. See xcb-requests(3) for details.
71
73 This request does never generate any errors.
74
77 Generated from xinput.xml. Contact xcb@lists.freedesktop.org for cor‐
78 rections and improvements.
79
80
81
82X Version 11 libxcb 1.13xcb_input_set_device_valuators(3)