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

NAME

6       xcb_randr_set_screen_config -
7

SYNOPSIS

9       #include <xcb/randr.h>
10
11   Request function
12       xcb_randr_set_screen_config_cookie_t
13              xcb_randr_set_screen_config(xcb_connection_t *conn,
14              xcb_window_t window, xcb_timestamp_t timestamp,
15              xcb_timestamp_t config_timestamp, uint16_t sizeID,
16              uint16_t rotation, uint16_t rate);
17
18   Reply datastructure
19       typedef struct xcb_randr_set_screen_config_reply_t {
20           uint8_t         response_type;
21           uint8_t         status;
22           uint16_t        sequence;
23           uint32_t        length;
24           xcb_timestamp_t new_timestamp;
25           xcb_timestamp_t config_timestamp;
26           xcb_window_t    root;
27           uint16_t        subpixel_order;
28           uint8_t         pad0[10];
29       } xcb_randr_set_screen_config_reply_t;
30
31   Reply function
32       xcb_randr_set_screen_config_reply_t
33              *xcb_randr_set_screen_config_reply(xcb_connection_t *conn,
34              xcb_randr_set_screen_config_cookie_t cookie,
35              xcb_generic_error_t **e);
36

REQUEST ARGUMENTS

38       conn      The XCB connection to X11.
39
40       window    TODO: NOT YET DOCUMENTED.
41
42       timestamp TODO: NOT YET DOCUMENTED.
43
44       config_timestamp
45                 TODO: NOT YET DOCUMENTED.
46
47       sizeID    TODO: NOT YET DOCUMENTED.
48
49       rotation  TODO: NOT YET DOCUMENTED.
50
51       rate      TODO: NOT YET DOCUMENTED.
52

REPLY FIELDS

54       response_type
55                 The type of this reply, in this case XCB_RAN‐
56                 DR_SET_SCREEN_CONFIG. This field is also present in the
57                 xcb_generic_reply_t and can be used to tell replies apart
58                 from each other.
59
60       sequence  The sequence number of the last request processed by the X11
61                 server.
62
63       length    The length of the reply, in words (a word is 4 bytes).
64
65       status    TODO: NOT YET DOCUMENTED.
66
67       new_timestamp
68                 TODO: NOT YET DOCUMENTED.
69
70       config_timestamp
71                 TODO: NOT YET DOCUMENTED.
72
73       root      TODO: NOT YET DOCUMENTED.
74
75       subpixel_order
76                 TODO: NOT YET DOCUMENTED.
77

DESCRIPTION

RETURN VALUE

80       Returns an xcb_randr_set_screen_config_cookie_t. Errors have to be han‐
81       dled when calling the reply function xcb_randr_set_screen_config_reply.
82
83       If you want to handle errors in the event loop instead, use xcb_ran‐
84       dr_set_screen_config_unchecked. See xcb-requests(3) for details.
85

ERRORS

87       This request does never generate any errors.
88

SEE ALSO

AUTHOR

91       Generated from randr.xml. Contact xcb@lists.freedesktop.org for correc‐
92       tions and improvements.
93
94
95
96X Version 11                      libxcb 1.13   xcb_randr_set_screen_config(3)
Impressum