xfree86: unexport xf86PostButtonEventM()
Not used by any external drivers, so no need to keep it exported. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
parent
2184917646
commit
e16424212e
|
@ -134,9 +134,6 @@ extern _X_EXPORT void xf86PostButtonEventP(DeviceIntPtr device, int is_absolute,
|
||||||
int first_valuator,
|
int first_valuator,
|
||||||
int num_valuators,
|
int num_valuators,
|
||||||
const int *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,
|
extern _X_EXPORT void xf86PostKeyboardEvent(DeviceIntPtr device,
|
||||||
unsigned int key_code, int is_down);
|
unsigned int key_code, int is_down);
|
||||||
extern _X_EXPORT void xf86PostTouchEvent(DeviceIntPtr dev, uint32_t touchid,
|
extern _X_EXPORT void xf86PostTouchEvent(DeviceIntPtr dev, uint32_t touchid,
|
||||||
|
|
|
@ -12,4 +12,7 @@ extern InputInfoPtr xf86InputDevs;
|
||||||
int xf86NewInputDevice(InputInfoPtr pInfo, DeviceIntPtr *pdev, BOOL is_auto);
|
int xf86NewInputDevice(InputInfoPtr pInfo, DeviceIntPtr *pdev, BOOL is_auto);
|
||||||
InputInfoPtr xf86AllocateInput(void);
|
InputInfoPtr xf86AllocateInput(void);
|
||||||
|
|
||||||
|
void xf86PostButtonEventM(DeviceIntPtr device, int is_absolute, int button,
|
||||||
|
int is_down, const ValuatorMask *mask);
|
||||||
|
|
||||||
#endif /* _XSERVER__XF86XINPUT_H */
|
#endif /* _XSERVER__XF86XINPUT_H */
|
||||||
|
|
|
@ -33,7 +33,7 @@
|
||||||
#include <input.h>
|
#include <input.h>
|
||||||
#include <xkbsrv.h>
|
#include <xkbsrv.h>
|
||||||
#include <xf86.h>
|
#include <xf86.h>
|
||||||
#include <xf86Xinput.h>
|
#include <xf86Xinput_priv.h>
|
||||||
#include "xorgVersion.h"
|
#include "xorgVersion.h"
|
||||||
#include <xserver-properties.h>
|
#include <xserver-properties.h>
|
||||||
#include <os.h>
|
#include <os.h>
|
||||||
|
|
Loading…
Reference in New Issue