1xcb_randr_get_screen_size_range(3)XCB Requestsxcb_randr_get_screen_size_range(3)
2
3
4

NAME

6       xcb_randr_get_screen_size_range -
7

SYNOPSIS

9       #include <xcb/randr.h>
10
11   Request function
12       xcb_randr_get_screen_size_range_cookie_t
13              xcb_randr_get_screen_size_range(xcb_connection_t *conn,
14              xcb_window_t window);
15
16   Reply datastructure
17       typedef struct xcb_randr_get_screen_size_range_reply_t {
18           uint8_t  response_type;
19           uint8_t  pad0;
20           uint16_t sequence;
21           uint32_t length;
22           uint16_t min_width;
23           uint16_t min_height;
24           uint16_t max_width;
25           uint16_t max_height;
26           uint8_t  pad1[16];
27       } xcb_randr_get_screen_size_range_reply_t;
28
29   Reply function
30       xcb_randr_get_screen_size_range_reply_t
31              *xcb_randr_get_screen_size_range_reply(xcb_connection_t *conn,
32              xcb_randr_get_screen_size_range_cookie_t cookie,
33              xcb_generic_error_t **e);
34

REQUEST ARGUMENTS

36       conn      The XCB connection to X11.
37
38       window    TODO: NOT YET DOCUMENTED.
39

REPLY FIELDS

41       response_type
42                 The type of this reply, in this case XCB_RAN‐
43                 DR_GET_SCREEN_SIZE_RANGE. This field is also present in the
44                 xcb_generic_reply_t and can be used to tell replies apart
45                 from each other.
46
47       sequence  The sequence number of the last request processed by the X11
48                 server.
49
50       length    The length of the reply, in words (a word is 4 bytes).
51
52       min_width TODO: NOT YET DOCUMENTED.
53
54       min_height
55                 TODO: NOT YET DOCUMENTED.
56
57       max_width TODO: NOT YET DOCUMENTED.
58
59       max_height
60                 TODO: NOT YET DOCUMENTED.
61

DESCRIPTION

RETURN VALUE

64       Returns an xcb_randr_get_screen_size_range_cookie_t. Errors have to be
65       handled when calling the reply function xcb_ran‐
66       dr_get_screen_size_range_reply.
67
68       If you want to handle errors in the event loop instead, use xcb_ran‐
69       dr_get_screen_size_range_unchecked. See xcb-requests(3) for details.
70

ERRORS

72       This request does never generate any errors.
73

SEE ALSO

AUTHOR

76       Generated from randr.xml. Contact xcb@lists.freedesktop.org for correc‐
77       tions and improvements.
78
79
80
81X Version 11                      libxcb 1.13xcb_randr_get_screen_size_range(3)
Impressum