dix: unexport DeliverRawEvent()
Not used by any external drivers, so no need to keep it public. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
parent
472e686496
commit
1ba07d8065
|
@ -403,4 +403,13 @@ WindowPtr InputDevCurrentRootWindow(DeviceIntPtr pDev)
|
||||||
WindowPtr InputDevSpriteWindow(DeviceIntPtr pDev)
|
WindowPtr InputDevSpriteWindow(DeviceIntPtr pDev)
|
||||||
_X_ATTRIBUTE_NONNULL_ARG(1);
|
_X_ATTRIBUTE_NONNULL_ARG(1);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @brief deliver a raw input device event
|
||||||
|
*
|
||||||
|
* @param event pointer to raw input device event structure
|
||||||
|
* @param device pointer to input device structure
|
||||||
|
*/
|
||||||
|
void DeliverRawEvent(RawDeviceEvent *event, DeviceIntPtr device)
|
||||||
|
_X_ATTRIBUTE_NONNULL_ARG(1,2);
|
||||||
|
|
||||||
#endif /* _XSERVER_INPUT_PRIV_H */
|
#endif /* _XSERVER_INPUT_PRIV_H */
|
||||||
|
|
|
@ -255,11 +255,6 @@ LastEventTimeToggleResetFlag(int deviceid, Bool state);
|
||||||
extern _X_EXPORT void
|
extern _X_EXPORT void
|
||||||
LastEventTimeToggleResetAll(Bool state);
|
LastEventTimeToggleResetAll(Bool state);
|
||||||
|
|
||||||
extern _X_EXPORT void
|
|
||||||
DeliverRawEvent(RawDeviceEvent * /* ev */ ,
|
|
||||||
DeviceIntPtr /* dev */
|
|
||||||
);
|
|
||||||
|
|
||||||
extern _X_EXPORT void
|
extern _X_EXPORT void
|
||||||
WindowHasNewCursor(WindowPtr /* pWin */ );
|
WindowHasNewCursor(WindowPtr /* pWin */ );
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue