1xcb_free_cursor(3) XCB Requests xcb_free_cursor(3)
2
3
4
6 xcb_free_cursor - Deletes a cursor
7
9 #include <xcb/xproto.h>
10
11 Request function
12 xcb_void_cookie_t xcb_free_cursor(xcb_connection_t *conn,
13 xcb_cursor_t cursor);
14
16 conn The XCB connection to X11.
17
18 cursor The cursor to destroy.
19
21 Deletes the association between the cursor resource ID and the speci‐
22 fied cursor. The cursor is freed when no other resource references it.
23
25 Returns an xcb_void_cookie_t. Errors (if any) have to be handled in the
26 event loop.
27
28 If you want to handle errors directly with xcb_request_check instead,
29 use xcb_free_cursor_checked. See xcb-requests(3) for details.
30
32 xcb_cursor_error_t
33 The specified cursor does not exist.
34
36 xcb-requests(3)
37
39 Generated from xproto.xml. Contact xcb@lists.freedesktop.org for cor‐
40 rections and improvements.
41
42
43
44X Version 11 libxcb 1.13.1 xcb_free_cursor(3)