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

NAME

6       xcb_set_pointer_mapping -
7

SYNOPSIS

9       #include <xcb/xproto.h>
10
11   Request function
12       xcb_set_pointer_mapping_cookie_t
13              xcb_set_pointer_mapping(xcb_connection_t *conn, uint8_t map_len,
14              const uint8_t *map);
15
16   Reply datastructure
17       typedef struct xcb_set_pointer_mapping_reply_t {
18           uint8_t  response_type;
19           uint8_t  status;
20           uint16_t sequence;
21           uint32_t length;
22       } xcb_set_pointer_mapping_reply_t;
23
24   Reply function
25       xcb_set_pointer_mapping_reply_t
26              *xcb_set_pointer_mapping_reply(xcb_connection_t *conn,
27              xcb_set_pointer_mapping_cookie_t cookie,
28              xcb_generic_error_t **e);
29

REQUEST ARGUMENTS

31       conn      The XCB connection to X11.
32
33       map_len   TODO: NOT YET DOCUMENTED.
34
35       map       TODO: NOT YET DOCUMENTED.
36

REPLY FIELDS

38       response_type
39                 The type of this reply, in this case XCB_SET_POINTER_MAPPING.
40                 This field is also present in the xcb_generic_reply_t and can
41                 be used to tell replies apart from each other.
42
43       sequence  The sequence number of the last request processed by the X11
44                 server.
45
46       length    The length of the reply, in words (a word is 4 bytes).
47
48       status    One of the following values:
49
50                 XCB_MAPPING_STATUS_SUCCESS
51                           TODO: NOT YET DOCUMENTED.
52
53                 XCB_MAPPING_STATUS_BUSY
54                           TODO: NOT YET DOCUMENTED.
55
56                 XCB_MAPPING_STATUS_FAILURE
57                           TODO: NOT YET DOCUMENTED.
58                 TODO: NOT YET DOCUMENTED.
59

DESCRIPTION

RETURN VALUE

62       Returns an xcb_set_pointer_mapping_cookie_t. Errors have to be handled
63       when calling the reply function xcb_set_pointer_mapping_reply.
64
65       If you want to handle errors in the event loop instead, use
66       xcb_set_pointer_mapping_unchecked. See xcb-requests(3) for details.
67

ERRORS

69       This request does never generate any errors.
70

SEE ALSO

AUTHOR

73       Generated from xproto.xml. Contact xcb@lists.freedesktop.org for cor‐
74       rections and improvements.
75
76
77
78X Version 11                      libxcb 1.13       xcb_set_pointer_mapping(3)
Impressum