1xcb_dri3_get_supported_modifiers(3X)CB Requestxscb_dri3_get_supported_modifiers(3)
2
3
4
6 xcb_dri3_get_supported_modifiers -
7
9 #include <xcb/dri3.h>
10
11 Request function
12 xcb_dri3_get_supported_modifiers_cookie_t
13 xcb_dri3_get_supported_modifiers(xcb_connection_t *conn,
14 uint32_t window, uint8_t depth, uint8_t bpp);
15
16 Reply datastructure
17 typedef struct xcb_dri3_get_supported_modifiers_reply_t {
18 uint8_t response_type;
19 uint8_t pad0;
20 uint16_t sequence;
21 uint32_t length;
22 uint32_t num_window_modifiers;
23 uint32_t num_screen_modifiers;
24 uint8_t pad1[16];
25 } xcb_dri3_get_supported_modifiers_reply_t;
26
27 Reply function
28 xcb_dri3_get_supported_modifiers_reply_t
29 *xcb_dri3_get_supported_modifiers_reply(xcb_connection_t *conn,
30 xcb_dri3_get_supported_modifiers_cookie_t cookie,
31 xcb_generic_error_t **e);
32
33 Reply accessors
34 uint64_t *xcb_dri3_get_supported_modifiers_window_modifiers(const
35 xcb_dri3_get_supported_modifiers_request_t *reply);
36
37 int xcb_dri3_get_supported_modifiers_window_modifiers_length(const
38 xcb_dri3_get_supported_modifiers_reply_t *reply);
39
40 xcb_generic_iterator_t
41 xcb_dri3_get_supported_modifiers_window_modifiers_end(const
42 xcb_dri3_get_supported_modifiers_reply_t *reply);
43
44 uint64_t *xcb_dri3_get_supported_modifiers_screen_modifiers(const
45 xcb_dri3_get_supported_modifiers_request_t *reply);
46
47 int xcb_dri3_get_supported_modifiers_screen_modifiers_length(const
48 xcb_dri3_get_supported_modifiers_reply_t *reply);
49
50 xcb_generic_iterator_t
51 xcb_dri3_get_supported_modifiers_screen_modifiers_end(const
52 xcb_dri3_get_supported_modifiers_reply_t *reply);
53
55 conn The XCB connection to X11.
56
57 window TODO: NOT YET DOCUMENTED.
58
59 depth TODO: NOT YET DOCUMENTED.
60
61 bpp TODO: NOT YET DOCUMENTED.
62
64 response_type
65 The type of this reply, in this case XCB_DRI3_GET_SUPPORT‐
66 ED_MODIFIERS. This field is also present in the xcb_gener‐
67 ic_reply_t and can be used to tell replies apart from each
68 other.
69
70 sequence The sequence number of the last request processed by the X11
71 server.
72
73 length The length of the reply, in words (a word is 4 bytes).
74
75 num_window_modifiers
76 TODO: NOT YET DOCUMENTED.
77
78 num_screen_modifiers
79 TODO: NOT YET DOCUMENTED.
80
83 Returns an xcb_dri3_get_supported_modifiers_cookie_t. Errors have to be
84 handled when calling the reply function xcb_dri3_get_supported_modi‐
85 fiers_reply.
86
87 If you want to handle errors in the event loop instead, use
88 xcb_dri3_get_supported_modifiers_unchecked. See xcb-requests(3) for de‐
89 tails.
90
92 This request does never generate any errors.
93
96 Generated from dri3.xml. Contact xcb@lists.freedesktop.org for correc‐
97 tions and improvements.
98
99
100
101X Version 11 libxcb 1.13x.c1b_dri3_get_supported_modifiers(3)