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:
Enrico Weigelt, metux IT consult 2025-05-23 19:47:55 +02:00
parent 2f7ba4bf32
commit c734df44ff
2 changed files with 9 additions and 4 deletions

View File

@ -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 */

View File

@ -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);