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