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

NAME

6       xcb_xfixes_get_cursor_image -
7

SYNOPSIS

9       #include <xcb/xfixes.h>
10
11   Request function
12       xcb_xfixes_get_cursor_image_cookie_t
13              xcb_xfixes_get_cursor_image(xcb_connection_t *conn,
14
15   Reply datastructure
16       typedef struct xcb_xfixes_get_cursor_image_reply_t {
17           uint8_t  response_type;
18           uint8_t  pad0;
19           uint16_t sequence;
20           uint32_t length;
21           int16_t  x;
22           int16_t  y;
23           uint16_t width;
24           uint16_t height;
25           uint16_t xhot;
26           uint16_t yhot;
27           uint32_t cursor_serial;
28           uint8_t  pad1[8];
29       } xcb_xfixes_get_cursor_image_reply_t;
30
31   Reply function
32       xcb_xfixes_get_cursor_image_reply_t
33              *xcb_xfixes_get_cursor_image_reply(xcb_connection_t *conn,
34              xcb_xfixes_get_cursor_image_cookie_t cookie,
35              xcb_generic_error_t **e);
36
37   Reply accessors
38       uint32_t *xcb_xfixes_get_cursor_image_cursor_image(const
39              xcb_xfixes_get_cursor_image_request_t *reply);
40
41       int xcb_xfixes_get_cursor_image_cursor_image_length(const
42              xcb_xfixes_get_cursor_image_reply_t *reply);
43
44       xcb_generic_iterator_t
45              xcb_xfixes_get_cursor_image_cursor_image_end(const
46              xcb_xfixes_get_cursor_image_reply_t *reply);
47

REQUEST ARGUMENTS

49       conn      The XCB connection to X11.
50

REPLY FIELDS

52       response_type
53                 The type of this reply, in this case XCB_XFIXES_GET_CUR‐
54                 SOR_IMAGE. This field is also present in the xcb_generic_re‐
55                 ply_t and can be used to tell replies apart from each other.
56
57       sequence  The sequence number of the last request processed by the X11
58                 server.
59
60       length    The length of the reply, in words (a word is 4 bytes).
61
62       x         TODO: NOT YET DOCUMENTED.
63
64       y         TODO: NOT YET DOCUMENTED.
65
66       width     TODO: NOT YET DOCUMENTED.
67
68       height    TODO: NOT YET DOCUMENTED.
69
70       xhot      TODO: NOT YET DOCUMENTED.
71
72       yhot      TODO: NOT YET DOCUMENTED.
73
74       cursor_serial
75                 TODO: NOT YET DOCUMENTED.
76

DESCRIPTION

RETURN VALUE

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

ERRORS

86       This request does never generate any errors.
87

SEE ALSO

AUTHOR

90       Generated from xfixes.xml. Contact xcb@lists.freedesktop.org for cor‐
91       rections and improvements.
92
93
94
95X Version 11                      libxcb 1.13   xcb_xfixes_get_cursor_image(3)
Impressum