1xcb_get_pointer_control(3) XCB Requests xcb_get_pointer_control(3)
2
3
4
6 xcb_get_pointer_control -
7
9 #include <xcb/xproto.h>
10
11 Request function
12 xcb_get_pointer_control_cookie_t
13 xcb_get_pointer_control(xcb_connection_t *conn,
14
15 Reply datastructure
16 typedef struct xcb_get_pointer_control_reply_t {
17 uint8_t response_type;
18 uint8_t pad0;
19 uint16_t sequence;
20 uint32_t length;
21 uint16_t acceleration_numerator;
22 uint16_t acceleration_denominator;
23 uint16_t threshold;
24 uint8_t pad1[18];
25 } xcb_get_pointer_control_reply_t;
26
27 Reply function
28 xcb_get_pointer_control_reply_t
29 *xcb_get_pointer_control_reply(xcb_connection_t *conn,
30 xcb_get_pointer_control_cookie_t cookie,
31 xcb_generic_error_t **e);
32
34 conn The XCB connection to X11.
35
37 response_type
38 The type of this reply, in this case XCB_GET_POINTER_CONTROL.
39 This field is also present in the xcb_generic_reply_t and can
40 be used to tell replies apart from each other.
41
42 sequence The sequence number of the last request processed by the X11
43 server.
44
45 length The length of the reply, in words (a word is 4 bytes).
46
47 acceleration_numerator
48 TODO: NOT YET DOCUMENTED.
49
50 acceleration_denominator
51 TODO: NOT YET DOCUMENTED.
52
53 threshold TODO: NOT YET DOCUMENTED.
54
57 Returns an xcb_get_pointer_control_cookie_t. Errors have to be handled
58 when calling the reply function xcb_get_pointer_control_reply.
59
60 If you want to handle errors in the event loop instead, use
61 xcb_get_pointer_control_unchecked. See xcb-requests(3) for details.
62
64 This request does never generate any errors.
65
68 Generated from xproto.xml. Contact xcb@lists.freedesktop.org for cor‐
69 rections and improvements.
70
71
72
73X Version 11 libxcb 1.13 xcb_get_pointer_control(3)