xfree86: drop unused xf86PostMotionEventP()
Not used anywhere, so no need to keep it around any longer. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
parent
bf27c3441f
commit
fd80169cfe
|
@ -1195,20 +1195,6 @@ xf86PostMotionEvent(DeviceIntPtr device,
|
||||||
xf86PostMotionEventM(device, is_absolute, &mask);
|
xf86PostMotionEventM(device, is_absolute, &mask);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
|
||||||
xf86PostMotionEventP(DeviceIntPtr device,
|
|
||||||
int is_absolute,
|
|
||||||
int first_valuator,
|
|
||||||
int num_valuators, const int *valuators)
|
|
||||||
{
|
|
||||||
ValuatorMask mask;
|
|
||||||
|
|
||||||
XI_VERIFY_VALUATORS(num_valuators);
|
|
||||||
|
|
||||||
valuator_mask_set_range(&mask, first_valuator, num_valuators, valuators);
|
|
||||||
xf86PostMotionEventM(device, is_absolute, &mask);
|
|
||||||
}
|
|
||||||
|
|
||||||
static int
|
static int
|
||||||
xf86CheckMotionEvent4DGA(DeviceIntPtr device, int is_absolute,
|
xf86CheckMotionEvent4DGA(DeviceIntPtr device, int is_absolute,
|
||||||
const ValuatorMask *mask)
|
const ValuatorMask *mask)
|
||||||
|
|
|
@ -118,10 +118,6 @@ struct _InputInfoRec {
|
||||||
extern _X_EXPORT void xf86PostMotionEvent(DeviceIntPtr device, int is_absolute,
|
extern _X_EXPORT void xf86PostMotionEvent(DeviceIntPtr device, int is_absolute,
|
||||||
int first_valuator, int num_valuators,
|
int first_valuator, int num_valuators,
|
||||||
...);
|
...);
|
||||||
extern _X_EXPORT void xf86PostMotionEventP(DeviceIntPtr device, int is_absolute,
|
|
||||||
int first_valuator,
|
|
||||||
int num_valuators,
|
|
||||||
const int *valuators);
|
|
||||||
extern _X_EXPORT void xf86PostMotionEventM(DeviceIntPtr device, int is_absolute,
|
extern _X_EXPORT void xf86PostMotionEventM(DeviceIntPtr device, int is_absolute,
|
||||||
const ValuatorMask *mask);
|
const ValuatorMask *mask);
|
||||||
extern _X_EXPORT void xf86PostProximityEvent(DeviceIntPtr device, int is_in,
|
extern _X_EXPORT void xf86PostProximityEvent(DeviceIntPtr device, int is_in,
|
||||||
|
|
Loading…
Reference in New Issue