/usr/include/libxnee/xnee_xinput.h is in libxnee-dev 3.11-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 | /*****
* Xnee's Not an Event Emulator
*
* Xnee enables recording and replaying of X protocol data
*
* Copyright (C) 2010, 2011 Henrik Sandklef
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 3
* of the License, or any later version.
*
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Boston,
* MA 02110-1301, USA.
****/
#ifndef XNEE_XINPUT_H
#define XNEE_XINPUT_H
#include "libxnee/xnee.h"
#ifdef XNEE_XINPUT_SUPPORT
#include <X11/extensions/XInput.h>
#include <X11/extensions/XInput2.h>
#include <X11/extensions/XIproto.h>
#endif /* XNEE_XINPUT_SUPPORT */
#define xnee_disable_xinput(xd) \
xd->xi_data.xinput_event_base = 0 ; \
xd->xi_data.recording_enabled = 0 ; \
xd->xi_data.xinput_record_mouse = 0; \
xd->xi_data.xinput_record_keyboard = 0;
#define xnee_xinput_disabled(xd)\
(xd->xi_data.recording_enabled != 1)
#define xnee_xinput_request_mouse(xd) \
xd->xi_data.xinput_record_mouse=1;
#define xnee_xinput_request_keyboard(xd) \
xd->xi_data.xinput_record_keyboard=1;
#define xnee_xinput_mouse_requested(xd) \
(xd->xi_data.xinput_record_mouse==1)
#define xnee_xinput_keyboard_requested(xd)\
(xd->xi_data.xinput_record_keyboard==1)
int
xnee_init_xinput(xnee_data *xd);
int
xnee_init_xinput_devices(xnee_data *xd);
int
xnee_get_xinput_event_base(Display *dpy);
int
xnee_has_xinput(xnee_data *xd);
int
xnee_handle_xinput_event(xnee_data * xd,
int event_type,
XRecordDatum *xrec_data,
Time server_time);
int
xnee_handle_xinput_event_human(xnee_data * xd,
int event_type,
XRecordDatum *xrec_data,
Time server_time);
XDevice *
xnee_get_xinput_device(xnee_data *xd, int deviceid);
int
xnee_xinput_add_devices(xnee_data *xd);
#endif /* XNEE_XINPUT_H */
|