1XILISTPROPERTIES(3) XILISTPROPERTIES(3)
2
3
4
6 XIListProperties - List a device's properties.
7
9 #include <X11/extensions/XInput2.h>
10
11 Atom* XListProperties( Display *display,
12 int deviceid,
13 int *nprops_return);
14
15 display
16 Specifies the connection to the X server.
17
18 deviceid
19 The device to list the properties for.
20
21 nprops_return
22 Specifies the number of Atoms returned.
23
25 The XIListProperties function returns a list of the properties
26 associated with the input device specified with deviceid. Each device
27 may have an arbitrary number of properties attached, some of which were
28 created by the driver and/or server, others created by clients at
29 runtime.
30
31 The client is expected to free the list of properties using XFree.
32
33 XIListProperties can generate a BadDevice error.
34
36 BadDevice An invalid device was specified. The device does not exist.
37
39 XIChangeProperty(3), XIGetProperty(3), XIDeleteProperty(3)
40
41
42
43 09/15/2021 XILISTPROPERTIES(3)