23 lines
630 B
C
23 lines
630 B
C
/* SPDX-License-Identifier: MIT OR X11
|
|
*
|
|
* Copyright © 2024 Enrico Weigelt, metux IT consult <info@metux.net>
|
|
*/
|
|
#ifndef _XSERVER__XF86XINPUT_H
|
|
#define _XSERVER__XF86XINPUT_H
|
|
|
|
#include "xf86Xinput.h"
|
|
|
|
extern InputInfoPtr xf86InputDevs;
|
|
|
|
int xf86NewInputDevice(InputInfoPtr pInfo, DeviceIntPtr *pdev, BOOL is_auto);
|
|
InputInfoPtr xf86AllocateInput(void);
|
|
|
|
void xf86PostButtonEventM(DeviceIntPtr device, int is_absolute, int button,
|
|
int is_down, const ValuatorMask *mask);
|
|
|
|
void xf86InputEnableVTProbe(void);
|
|
|
|
InputDriverPtr xf86LookupInputDriver(const char *name);
|
|
|
|
#endif /* _XSERVER__XF86XINPUT_H */
|