diff --git a/hw/xfree86/common/xf86Xinput.h b/hw/xfree86/common/xf86Xinput.h index d2faaf07b..a93c94908 100644 --- a/hw/xfree86/common/xf86Xinput.h +++ b/hw/xfree86/common/xf86Xinput.h @@ -134,6 +134,9 @@ extern _X_EXPORT void xf86PostButtonEventP(DeviceIntPtr device, int is_absolute, int first_valuator, int num_valuators, const int *valuators); +extern _X_EXPORT void xf86PostButtonEventM(DeviceIntPtr device, int is_absolute, + int button, int is_down, + const ValuatorMask *mask); extern _X_EXPORT void xf86PostKeyboardEvent(DeviceIntPtr device, unsigned int key_code, int is_down); extern _X_EXPORT void xf86PostTouchEvent(DeviceIntPtr dev, uint32_t touchid, diff --git a/hw/xfree86/common/xf86Xinput_priv.h b/hw/xfree86/common/xf86Xinput_priv.h index d90b0736c..7f0ec46fa 100644 --- a/hw/xfree86/common/xf86Xinput_priv.h +++ b/hw/xfree86/common/xf86Xinput_priv.h @@ -12,9 +12,6 @@ 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);