1xcb_randr_query_output_property(3)XCB Requestsxcb_randr_query_output_property(3)
2
3
4
6 xcb_randr_query_output_property -
7
9 #include <xcb/randr.h>
10
11 Request function
12 xcb_randr_query_output_property_cookie_t
13 xcb_randr_query_output_property(xcb_connection_t *conn,
14 xcb_randr_output_t output, xcb_atom_t property);
15
16 Reply datastructure
17 typedef struct xcb_randr_query_output_property_reply_t {
18 uint8_t response_type;
19 uint8_t pad0;
20 uint16_t sequence;
21 uint32_t length;
22 uint8_t pending;
23 uint8_t range;
24 uint8_t immutable;
25 uint8_t pad1[21];
26 } xcb_randr_query_output_property_reply_t;
27
28 Reply function
29 xcb_randr_query_output_property_reply_t
30 *xcb_randr_query_output_property_reply(xcb_connection_t *conn,
31 xcb_randr_query_output_property_cookie_t cookie,
32 xcb_generic_error_t **e);
33
34 Reply accessors
35 int32_t *xcb_randr_query_output_property_valid_values(const
36 xcb_randr_query_output_property_request_t *reply);
37
38 int xcb_randr_query_output_property_valid_values_length(const
39 xcb_randr_query_output_property_reply_t *reply);
40
41 xcb_generic_iterator_t
42 xcb_randr_query_output_property_valid_values_end(const
43 xcb_randr_query_output_property_reply_t *reply);
44
46 conn The XCB connection to X11.
47
48 output TODO: NOT YET DOCUMENTED.
49
50 property TODO: NOT YET DOCUMENTED.
51
53 response_type
54 The type of this reply, in this case XCB_RANDR_QUERY_OUT‐
55 PUT_PROPERTY. This field is also present in the xcb_gener‐
56 ic_reply_t and can be used to tell replies apart from each
57 other.
58
59 sequence The sequence number of the last request processed by the X11
60 server.
61
62 length The length of the reply, in words (a word is 4 bytes).
63
64 pending TODO: NOT YET DOCUMENTED.
65
66 range TODO: NOT YET DOCUMENTED.
67
68 immutable TODO: NOT YET DOCUMENTED.
69
72 Returns an xcb_randr_query_output_property_cookie_t. Errors have to be
73 handled when calling the reply function xcb_randr_query_output_proper‐
74 ty_reply.
75
76 If you want to handle errors in the event loop instead, use xcb_ran‐
77 dr_query_output_property_unchecked. See xcb-requests(3) for details.
78
80 This request does never generate any errors.
81
84 Generated from randr.xml. Contact xcb@lists.freedesktop.org for correc‐
85 tions and improvements.
86
87
88
89X Version 11 libxcb 1.13xcb_randr_query_output_property(3)