dix: unexport OtherClientGone()
Just an internal resource destructor, 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
0124a7c370
commit
b826800613
|
@ -535,4 +535,13 @@ void WindowsRestructured(void);
|
|||
void ScreenRestructured(ScreenPtr pScreen)
|
||||
_X_ATTRIBUTE_NONNULL_ARG(1);
|
||||
|
||||
/*
|
||||
* @brief destructor for X11_RESTYPE_OTHERCLIENT resources
|
||||
*
|
||||
* @param value pointer to resource data
|
||||
* @param id ID of the resource
|
||||
* @return (undefined/ignored)
|
||||
*/
|
||||
int OtherClientGone(void *value, XID id);
|
||||
|
||||
#endif /* _XSERVER_DIX_PRIV_H */
|
||||
|
|
|
@ -255,10 +255,6 @@ LastEventTimeToggleResetFlag(int deviceid, Bool state);
|
|||
extern _X_EXPORT void
|
||||
LastEventTimeToggleResetAll(Bool state);
|
||||
|
||||
extern _X_EXPORT int
|
||||
OtherClientGone(void *value,
|
||||
XID id);
|
||||
|
||||
extern _X_EXPORT void
|
||||
WriteEventsToClient(ClientPtr /*pClient */ ,
|
||||
int /*count */ ,
|
||||
|
|
Loading…
Reference in New Issue