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:
parent
1ba07d8065
commit
20b82a6efb
|
@ -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 */
|
||||
|
|
|
@ -308,12 +308,6 @@ typedef struct {
|
|||
int count;
|
||||
} EventInfoRec;
|
||||
|
||||
/*
|
||||
* DeviceEventCallback stuff
|
||||
*/
|
||||
|
||||
extern _X_EXPORT CallbackListPtr DeviceEventCallback;
|
||||
|
||||
typedef struct {
|
||||
InternalEvent *event;
|
||||
DeviceIntPtr device;
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue