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

NAME

6       xcb_dpms_get_timeouts -
7

SYNOPSIS

9       #include <xcb/dpms.h>
10
11   Request function
12       xcb_dpms_get_timeouts_cookie_t
13              xcb_dpms_get_timeouts(xcb_connection_t *conn,
14
15   Reply datastructure
16       typedef struct xcb_dpms_get_timeouts_reply_t {
17           uint8_t  response_type;
18           uint8_t  pad0;
19           uint16_t sequence;
20           uint32_t length;
21           uint16_t standby_timeout;
22           uint16_t suspend_timeout;
23           uint16_t off_timeout;
24           uint8_t  pad1[18];
25       } xcb_dpms_get_timeouts_reply_t;
26
27   Reply function
28       xcb_dpms_get_timeouts_reply_t
29              *xcb_dpms_get_timeouts_reply(xcb_connection_t *conn,
30              xcb_dpms_get_timeouts_cookie_t cookie, xcb_generic_error_t **e);
31

REQUEST ARGUMENTS

33       conn      The XCB connection to X11.
34

REPLY FIELDS

36       response_type
37                 The type of this reply, in this case XCB_DPMS_GET_TIMEOUTS.
38                 This field is also present in the xcb_generic_reply_t and can
39                 be used to tell replies apart from each other.
40
41       sequence  The sequence number of the last request processed by the X11
42                 server.
43
44       length    The length of the reply, in words (a word is 4 bytes).
45
46       standby_timeout
47                 TODO: NOT YET DOCUMENTED.
48
49       suspend_timeout
50                 TODO: NOT YET DOCUMENTED.
51
52       off_timeout
53                 TODO: NOT YET DOCUMENTED.
54

DESCRIPTION

RETURN VALUE

57       Returns an xcb_dpms_get_timeouts_cookie_t. Errors have to be handled
58       when calling the reply function xcb_dpms_get_timeouts_reply.
59
60       If you want to handle errors in the event loop instead, use
61       xcb_dpms_get_timeouts_unchecked. See xcb-requests(3) for details.
62

ERRORS

64       This request does never generate any errors.
65

SEE ALSO

AUTHOR

68       Generated from dpms.xml. Contact xcb@lists.freedesktop.org for correcā€
69       tions and improvements.
70
71
72
73X Version 11                      libxcb 1.13         xcb_dpms_get_timeouts(3)
Impressum