dix: unexport and document WindowHasNewCursor()
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
95f802e3f6
commit
17ef760571
|
@ -510,4 +510,14 @@ int DeliverEventsToWindow(DeviceIntPtr pDev, WindowPtr pWindow, xEventPtr pEvent
|
|||
*/
|
||||
extern CallbackListPtr RootWindowFinalizeCallback;
|
||||
|
||||
/*
|
||||
* @brief do post actions necessary when window got a new cursor
|
||||
*
|
||||
* currently just for updating cursors on input devices
|
||||
*
|
||||
* @param pWindow window that just got a new cursor
|
||||
*/
|
||||
void WindowHasNewCursor(WindowPtr pWin)
|
||||
_X_ATTRIBUTE_NONNULL_ARG(1);
|
||||
|
||||
#endif /* _XSERVER_DIX_PRIV_H */
|
||||
|
|
|
@ -255,9 +255,6 @@ LastEventTimeToggleResetFlag(int deviceid, Bool state);
|
|||
extern _X_EXPORT void
|
||||
LastEventTimeToggleResetAll(Bool state);
|
||||
|
||||
extern _X_EXPORT void
|
||||
WindowHasNewCursor(WindowPtr /* pWin */ );
|
||||
|
||||
extern _X_EXPORT int
|
||||
OtherClientGone(void *value,
|
||||
XID id);
|
||||
|
|
Loading…
Reference in New Issue