1xcb_input_get_extension_version(3)XCB Requestsxcb_input_get_extension_version(3)
2
3
4

NAME

6       xcb_input_get_extension_version -
7

SYNOPSIS

9       #include <xcb/xinput.h>
10
11   Request function
12       xcb_input_get_extension_version_cookie_t
13              xcb_input_get_extension_version(xcb_connection_t *conn,
14              uint16_t name_len, const char *name);
15
16   Reply datastructure
17       typedef struct xcb_input_get_extension_version_reply_t {
18           uint8_t  response_type;
19           uint8_t  xi_reply_type;
20           uint16_t sequence;
21           uint32_t length;
22           uint16_t server_major;
23           uint16_t server_minor;
24           uint8_t  present;
25           uint8_t  pad0[19];
26       } xcb_input_get_extension_version_reply_t;
27
28   Reply function
29       xcb_input_get_extension_version_reply_t
30              *xcb_input_get_extension_version_reply(xcb_connection_t *conn,
31              xcb_input_get_extension_version_cookie_t cookie,
32              xcb_generic_error_t **e);
33

REQUEST ARGUMENTS

35       conn      The XCB connection to X11.
36
37       name_len  TODO: NOT YET DOCUMENTED.
38
39       name      TODO: NOT YET DOCUMENTED.
40

REPLY FIELDS

42       response_type
43                 The type of this reply, in this case XCB_INPUT_GET_EXTEN‐
44                 SION_VERSION. This field is also present in the xcb_gener‐
45                 ic_reply_t and can be used to tell replies apart from each
46                 other.
47
48       sequence  The sequence number of the last request processed by the X11
49                 server.
50
51       length    The length of the reply, in words (a word is 4 bytes).
52
53       xi_reply_type
54                 TODO: NOT YET DOCUMENTED.
55
56       server_major
57                 TODO: NOT YET DOCUMENTED.
58
59       server_minor
60                 TODO: NOT YET DOCUMENTED.
61
62       present   TODO: NOT YET DOCUMENTED.
63

DESCRIPTION

RETURN VALUE

66       Returns an xcb_input_get_extension_version_cookie_t. Errors have to be
67       handled when calling the reply function xcb_input_get_extension_ver‐
68       sion_reply.
69
70       If you want to handle errors in the event loop instead, use xcb_in‐
71       put_get_extension_version_unchecked. See xcb-requests(3) for details.
72

ERRORS

74       This request does never generate any errors.
75

SEE ALSO

AUTHOR

78       Generated from xinput.xml. Contact xcb@lists.freedesktop.org for cor‐
79       rections and improvements.
80
81
82
83X Version 11                      libxcb 1.13xcb_input_get_extension_version(3)
Impressum