dix: unexport IsKeyboardDevice()
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
57bc6cb633
commit
537f8c4b82
|
@ -446,4 +446,13 @@ DeviceIntPtr PickKeyboard(ClientPtr client)
|
||||||
Bool IsPointerDevice(DeviceIntPtr dev)
|
Bool IsPointerDevice(DeviceIntPtr dev)
|
||||||
_X_ATTRIBUTE_NONNULL_ARG(1);
|
_X_ATTRIBUTE_NONNULL_ARG(1);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @brief check whether input device is a keyboard
|
||||||
|
*
|
||||||
|
* @param dev pointer to device structure
|
||||||
|
* @return TRUE if dev is a keyboard device
|
||||||
|
*/
|
||||||
|
Bool IsKeyboardDevice(DeviceIntPtr dev)
|
||||||
|
_X_ATTRIBUTE_NONNULL_ARG(1);
|
||||||
|
|
||||||
#endif /* _XSERVER_INPUT_PRIV_H */
|
#endif /* _XSERVER_INPUT_PRIV_H */
|
||||||
|
|
|
@ -288,9 +288,6 @@ typedef struct {
|
||||||
DeviceIntPtr device;
|
DeviceIntPtr device;
|
||||||
} DeviceEventInfoRec;
|
} DeviceEventInfoRec;
|
||||||
|
|
||||||
extern _X_EXPORT Bool
|
|
||||||
IsKeyboardDevice(DeviceIntPtr dev);
|
|
||||||
|
|
||||||
extern _X_EXPORT Bool
|
extern _X_EXPORT Bool
|
||||||
IsMaster(DeviceIntPtr dev);
|
IsMaster(DeviceIntPtr dev);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue