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)
|
void DeliverRawEvent(RawDeviceEvent *event, DeviceIntPtr device)
|
||||||
_X_ATTRIBUTE_NONNULL_ARG(1,2);
|
_X_ATTRIBUTE_NONNULL_ARG(1,2);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @brief callback on input device events
|
||||||
|
*/
|
||||||
|
extern CallbackListPtr DeviceEventCallback;
|
||||||
|
|
||||||
#endif /* _XSERVER_INPUT_PRIV_H */
|
#endif /* _XSERVER_INPUT_PRIV_H */
|
||||||
|
|
|
@ -308,12 +308,6 @@ typedef struct {
|
||||||
int count;
|
int count;
|
||||||
} EventInfoRec;
|
} EventInfoRec;
|
||||||
|
|
||||||
/*
|
|
||||||
* DeviceEventCallback stuff
|
|
||||||
*/
|
|
||||||
|
|
||||||
extern _X_EXPORT CallbackListPtr DeviceEventCallback;
|
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
InternalEvent *event;
|
InternalEvent *event;
|
||||||
DeviceIntPtr device;
|
DeviceIntPtr device;
|
||||||
|
|
|
@ -36,6 +36,7 @@ and Jim Haggerty of Metheus.
|
||||||
|
|
||||||
#include "dix/cursor_priv.h"
|
#include "dix/cursor_priv.h"
|
||||||
#include "dix/eventconvert.h"
|
#include "dix/eventconvert.h"
|
||||||
|
#include "dix/input_priv.h"
|
||||||
#include "os/client_priv.h"
|
#include "os/client_priv.h"
|
||||||
|
|
||||||
#include "dixstruct.h"
|
#include "dixstruct.h"
|
||||||
|
|
Loading…
Reference in New Issue