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