dix: unexport IsMaster()
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
537f8c4b82
commit
1b3de34f22
|
@ -52,9 +52,12 @@ SOFTWARE.
|
||||||
|
|
||||||
#include <dix-config.h>
|
#include <dix-config.h>
|
||||||
|
|
||||||
#include "inputstr.h" /* DeviceIntPtr */
|
|
||||||
#include <X11/extensions/XI.h>
|
#include <X11/extensions/XI.h>
|
||||||
#include <X11/extensions/XIproto.h>
|
#include <X11/extensions/XIproto.h>
|
||||||
|
|
||||||
|
#include "dix/input_priv.h"
|
||||||
|
|
||||||
|
#include "inputstr.h" /* DeviceIntPtr */
|
||||||
#include "XIstubs.h"
|
#include "XIstubs.h"
|
||||||
#include "windowstr.h" /* window structure */
|
#include "windowstr.h" /* window structure */
|
||||||
#include "exglobals.h"
|
#include "exglobals.h"
|
||||||
|
|
|
@ -455,4 +455,13 @@ Bool IsPointerDevice(DeviceIntPtr dev)
|
||||||
Bool IsKeyboardDevice(DeviceIntPtr dev)
|
Bool IsKeyboardDevice(DeviceIntPtr dev)
|
||||||
_X_ATTRIBUTE_NONNULL_ARG(1);
|
_X_ATTRIBUTE_NONNULL_ARG(1);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @brief check whether input device is a master
|
||||||
|
*
|
||||||
|
* @param dev device to be checked
|
||||||
|
* @return TRUE if the device is a master
|
||||||
|
*/
|
||||||
|
Bool IsMaster(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
|
|
||||||
IsMaster(DeviceIntPtr dev);
|
|
||||||
|
|
||||||
extern _X_EXPORT Bool
|
extern _X_EXPORT Bool
|
||||||
IsFloating(DeviceIntPtr dev);
|
IsFloating(DeviceIntPtr dev);
|
||||||
|
|
||||||
|
|
|
@ -33,6 +33,7 @@ THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
#include <X11/Xproto.h>
|
#include <X11/Xproto.h>
|
||||||
#include <X11/extensions/XI.h>
|
#include <X11/extensions/XI.h>
|
||||||
|
|
||||||
|
#include "dix/input_priv.h"
|
||||||
#include "xkb/xkbsrv_priv.h"
|
#include "xkb/xkbsrv_priv.h"
|
||||||
|
|
||||||
#include "misc.h"
|
#include "misc.h"
|
||||||
|
|
Loading…
Reference in New Issue