1xcb_xkb_use_extension(3)         XCB Requests         xcb_xkb_use_extension(3)
2
3
4

NAME

6       xcb_xkb_use_extension -
7

SYNOPSIS

9       #include <xcb/xkb.h>
10
11   Request function
12       xcb_xkb_use_extension_cookie_t
13              xcb_xkb_use_extension(xcb_connection_t *conn,
14              uint16_t wantedMajor, uint16_t wantedMinor);
15
16   Reply datastructure
17       typedef struct xcb_xkb_use_extension_reply_t {
18           uint8_t  response_type;
19           uint8_t  supported;
20           uint16_t sequence;
21           uint32_t length;
22           uint16_t serverMajor;
23           uint16_t serverMinor;
24           uint8_t  pad0[20];
25       } xcb_xkb_use_extension_reply_t;
26
27   Reply function
28       xcb_xkb_use_extension_reply_t
29              *xcb_xkb_use_extension_reply(xcb_connection_t *conn,
30              xcb_xkb_use_extension_cookie_t cookie, xcb_generic_error_t **e);
31

REQUEST ARGUMENTS

33       conn      The XCB connection to X11.
34
35       wantedMajor
36                 TODO: NOT YET DOCUMENTED.
37
38       wantedMinor
39                 TODO: NOT YET DOCUMENTED.
40

REPLY FIELDS

42       response_type
43                 The type of this reply, in this case XCB_XKB_USE_EXTENSION.
44                 This field is also present in the xcb_generic_reply_t and can
45                 be used to tell replies apart from each other.
46
47       sequence  The sequence number of the last request processed by the X11
48                 server.
49
50       length    The length of the reply, in words (a word is 4 bytes).
51
52       supported TODO: NOT YET DOCUMENTED.
53
54       serverMajor
55                 TODO: NOT YET DOCUMENTED.
56
57       serverMinor
58                 TODO: NOT YET DOCUMENTED.
59

DESCRIPTION

RETURN VALUE

62       Returns an xcb_xkb_use_extension_cookie_t. Errors have to be handled
63       when calling the reply function xcb_xkb_use_extension_reply.
64
65       If you want to handle errors in the event loop instead, use
66       xcb_xkb_use_extension_unchecked. See xcb-requests(3) for details.
67

ERRORS

69       This request does never generate any errors.
70

SEE ALSO

AUTHOR

73       Generated from xkb.xml. Contact xcb@lists.freedesktop.org for correcā€
74       tions and improvements.
75
76
77
78X Version 11                      libxcb 1.13         xcb_xkb_use_extension(3)
Impressum