1xcb_create_cursor(3) XCB Requests xcb_create_cursor(3)
2
3
4
6 xcb_create_cursor -
7
9 #include <xcb/xproto.h>
10
11 Request function
12 xcb_void_cookie_t xcb_create_cursor(xcb_connection_t *conn,
13 xcb_cursor_t cid, xcb_pixmap_t source, xcb_pixmap_t mask,
14 uint16_t fore_red, uint16_t fore_green, uint16_t fore_blue,
15 uint16_t back_red, uint16_t back_green, uint16_t back_blue,
16 uint16_t x, uint16_t y);
17
19 conn The XCB connection to X11.
20
21 cid TODO: NOT YET DOCUMENTED.
22
23 source TODO: NOT YET DOCUMENTED.
24
25 mask TODO: NOT YET DOCUMENTED.
26
27 fore_red TODO: NOT YET DOCUMENTED.
28
29 fore_green
30 TODO: NOT YET DOCUMENTED.
31
32 fore_blue TODO: NOT YET DOCUMENTED.
33
34 back_red TODO: NOT YET DOCUMENTED.
35
36 back_green
37 TODO: NOT YET DOCUMENTED.
38
39 back_blue TODO: NOT YET DOCUMENTED.
40
41 x TODO: NOT YET DOCUMENTED.
42
43 y TODO: NOT YET DOCUMENTED.
44
47 Returns an xcb_void_cookie_t. Errors (if any) have to be handled in the
48 event loop.
49
50 If you want to handle errors directly with xcb_request_check instead,
51 use xcb_create_cursor_checked. See xcb-requests(3) for details.
52
54 This request does never generate any errors.
55
58 Generated from xproto.xml. Contact xcb@lists.freedesktop.org for cor‐
59 rections and improvements.
60
61
62
63X Version 11 libxcb 1.13.1 xcb_create_cursor(3)