dix: unexport NoticeTime()
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
2f7ba4bf32
commit
c734df44ff
|
@ -477,4 +477,13 @@ Bool InputDevIsMaster(DeviceIntPtr dev)
|
|||
Bool InputDevIsFloating(DeviceIntPtr dev)
|
||||
_X_ATTRIBUTE_NONNULL_ARG(1);
|
||||
|
||||
/*
|
||||
* @brief store timestamp as the device's last event time
|
||||
*
|
||||
* @param dev device the timestamp is stored for
|
||||
* @param time the timestamp to store
|
||||
*/
|
||||
void NoticeTime(const DeviceIntPtr dev, TimeStamp time)
|
||||
_X_ATTRIBUTE_NONNULL_ARG(1);
|
||||
|
||||
#endif /* _XSERVER_INPUT_PRIV_H */
|
||||
|
|
|
@ -225,10 +225,6 @@ SetVendorRelease(int release);
|
|||
|
||||
/* events.c */
|
||||
|
||||
extern _X_EXPORT void
|
||||
NoticeTime(const DeviceIntPtr dev,
|
||||
TimeStamp time);
|
||||
|
||||
extern _X_EXPORT void
|
||||
NoticeEventTime(InternalEvent *ev,
|
||||
DeviceIntPtr dev);
|
||||
|
|
Loading…
Reference in New Issue