1xcb_input_change_device_control(3)XCB Requestsxcb_input_change_device_control(3)
2
3
4
6 xcb_input_change_device_control -
7
9 #include <xcb/xinput.h>
10
11 Request function
12 xcb_input_change_device_control_cookie_t
13 xcb_input_change_device_control(xcb_connection_t *conn,
14 uint16_t control_id, uint8_t device_id,
15 xcb_input_device_ctl_t *control);
16
17 Reply datastructure
18 typedef struct xcb_input_change_device_control_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_change_device_control_reply_t;
26
27 Reply function
28 xcb_input_change_device_control_reply_t
29 *xcb_input_change_device_control_reply(xcb_connection_t *conn,
30 xcb_input_change_device_control_cookie_t cookie,
31 xcb_generic_error_t **e);
32
34 conn The XCB connection to X11.
35
36 control_id
37 TODO: NOT YET DOCUMENTED.
38
39 device_id TODO: NOT YET DOCUMENTED.
40
41 control TODO: NOT YET DOCUMENTED.
42
44 response_type
45 The type of this reply, in this case XCB_INPUT_CHANGE_DE‐
46 VICE_CONTROL. This field is also present in the xcb_gener‐
47 ic_reply_t and can be used to tell replies apart from each
48 other.
49
50 sequence The sequence number of the last request processed by the X11
51 server.
52
53 length The length of the reply, in words (a word is 4 bytes).
54
55 xi_reply_type
56 TODO: NOT YET DOCUMENTED.
57
58 status TODO: NOT YET DOCUMENTED.
59
62 Returns an xcb_input_change_device_control_cookie_t. Errors have to be
63 handled when calling the reply function xcb_input_change_device_con‐
64 trol_reply.
65
66 If you want to handle errors in the event loop instead, use xcb_in‐
67 put_change_device_control_unchecked. See xcb-requests(3) for details.
68
70 This request does never generate any errors.
71
74 Generated from xinput.xml. Contact xcb@lists.freedesktop.org for cor‐
75 rections and improvements.
76
77
78
79X Version 11 libxcb 1.13.x1cb_input_change_device_control(3)