dix: unexport DeviceEventCallback field

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:
Enrico Weigelt, metux IT consult 2025-05-23 16:26:48 +02:00
parent 1ba07d8065
commit 20b82a6efb
3 changed files with 6 additions and 6 deletions

View File

@ -412,4 +412,9 @@ WindowPtr InputDevSpriteWindow(DeviceIntPtr pDev)
void DeliverRawEvent(RawDeviceEvent *event, DeviceIntPtr device)
_X_ATTRIBUTE_NONNULL_ARG(1,2);
/*
* @brief callback on input device events
*/
extern CallbackListPtr DeviceEventCallback;
#endif /* _XSERVER_INPUT_PRIV_H */

View File

@ -308,12 +308,6 @@ typedef struct {
int count;
} EventInfoRec;
/*
* DeviceEventCallback stuff
*/
extern _X_EXPORT CallbackListPtr DeviceEventCallback;
typedef struct {
InternalEvent *event;
DeviceIntPtr device;

View File

@ -36,6 +36,7 @@ and Jim Haggerty of Metheus.
#include "dix/cursor_priv.h"
#include "dix/eventconvert.h"
#include "dix/input_priv.h"
#include "os/client_priv.h"
#include "dixstruct.h"