1xcb_kill_client(3) XCB Requests xcb_kill_client(3)
2
3
4
6 xcb_kill_client - kills a client
7
9 #include <xcb/xproto.h>
10
11 Request function
12 xcb_void_cookie_t xcb_kill_client(xcb_connection_t *conn,
13 uint32_t resource);
14
16 conn The XCB connection to X11.
17
18 resource Any resource belonging to the client (for example a Window),
19 used to identify the client connection.
20
21 The special value of XCB_KILL_ALL_TEMPORARY, the resources of
22 all clients that have terminated in RetainTemporary (TODO)
23 are destroyed.
24
26 Forces a close down of the client that created the specified resource.
27
29 Returns an xcb_void_cookie_t. Errors (if any) have to be handled in the
30 event loop.
31
32 If you want to handle errors directly with xcb_request_check instead,
33 use xcb_kill_client_checked. See xcb-requests(3) for details.
34
36 xcb_value_error_t
37 The specified resource does not exist.
38
40 xcb-requests(3), xkill(1)
41
43 Generated from xproto.xml. Contact xcb@lists.freedesktop.org for cor‐
44 rections and improvements.
45
46
47
48X Version 11 libxcb 1.13.1 xcb_kill_client(3)