Libpointing
An open-source cross-platform library to get raw events from pointing devices and master transfer functions.
XInputHelper.h
1 /* -*- mode: c++ -*-
2  *
3  * pointing/input/linux/XinputHelper.h --
4  *
5  * Initial software
6  * Authors: Izzatbek Mukhanov
7  * Copyright © Inria
8  *
9  * http://libpointing.org/
10  *
11  * This software may be used and distributed according to the terms of
12  * the GNU General Public License version 2 or any later version.
13  *
14  */
15 
16 #include <X11/extensions/XInput.h>
17 
18 namespace pointing
19 {
20  XDeviceInfo* find_device_info(Display *display,
21  const char *name,
22  Bool only_extended);
23 
24  void executeCommand(Display *dpy, XDeviceInfo *info, const char *command, unsigned char data);
25 
26  void enableSynapticsTouchpad();
27 }
Definition: DummyPointingDevice.cpp:23