1xcb_randr_get_output_property(3) XCB Requests xcb_randr_get_output_property(3)
2
3
4
6 xcb_randr_get_output_property -
7
9 #include <xcb/randr.h>
10
11 Request function
12 xcb_randr_get_output_property_cookie_t
13 xcb_randr_get_output_property(xcb_connection_t *conn,
14 xcb_randr_output_t output, xcb_atom_t property, xcb_atom_t type,
15 uint32_t long_offset, uint32_t long_length, uint8_t _delete,
16 uint8_t pending);
17
18 Reply datastructure
19 typedef struct xcb_randr_get_output_property_reply_t {
20 uint8_t response_type;
21 uint8_t format;
22 uint16_t sequence;
23 uint32_t length;
24 xcb_atom_t type;
25 uint32_t bytes_after;
26 uint32_t num_items;
27 uint8_t pad0[12];
28 } xcb_randr_get_output_property_reply_t;
29
30 Reply function
31 xcb_randr_get_output_property_reply_t
32 *xcb_randr_get_output_property_reply(xcb_connection_t *conn,
33 xcb_randr_get_output_property_cookie_t cookie,
34 xcb_generic_error_t **e);
35
36 Reply accessors
37 uint8_t *xcb_randr_get_output_property_data(const
38 xcb_randr_get_output_property_request_t *reply);
39
40 int xcb_randr_get_output_property_data_length(const
41 xcb_randr_get_output_property_reply_t *reply);
42
43 xcb_generic_iterator_t xcb_randr_get_output_property_data_end(const
44 xcb_randr_get_output_property_reply_t *reply);
45
47 conn The XCB connection to X11.
48
49 output TODO: NOT YET DOCUMENTED.
50
51 property TODO: NOT YET DOCUMENTED.
52
53 type TODO: NOT YET DOCUMENTED.
54
55 long_offset
56 TODO: NOT YET DOCUMENTED.
57
58 long_length
59 TODO: NOT YET DOCUMENTED.
60
61 _delete TODO: NOT YET DOCUMENTED.
62
63 pending TODO: NOT YET DOCUMENTED.
64
66 response_type
67 The type of this reply, in this case XCB_RANDR_GET_OUT‐
68 PUT_PROPERTY. This field is also present in the xcb_gener‐
69 ic_reply_t and can be used to tell replies apart from each
70 other.
71
72 sequence The sequence number of the last request processed by the X11
73 server.
74
75 length The length of the reply, in words (a word is 4 bytes).
76
77 format TODO: NOT YET DOCUMENTED.
78
79 type TODO: NOT YET DOCUMENTED.
80
81 bytes_after
82 TODO: NOT YET DOCUMENTED.
83
84 num_items TODO: NOT YET DOCUMENTED.
85
88 Returns an xcb_randr_get_output_property_cookie_t. Errors have to be
89 handled when calling the reply function xcb_randr_get_output_proper‐
90 ty_reply.
91
92 If you want to handle errors in the event loop instead, use xcb_ran‐
93 dr_get_output_property_unchecked. See xcb-requests(3) for details.
94
96 This request does never generate any errors.
97
100 Generated from randr.xml. Contact xcb@lists.freedesktop.org for correc‐
101 tions and improvements.
102
103
104
105X Version 11 libxcb 1.12 xcb_randr_get_output_property(3)