XI: unexport XIPropToInt() and XIPropToFloat()
Not used by any drivers, and subject to upcoming changes, so no need to keep them exported. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
parent
6b772096ac
commit
233ea698e6
|
@ -155,4 +155,8 @@ void XTestDeviceSendEvents(DeviceIntPtr dev,
|
||||||
int flags,
|
int flags,
|
||||||
const ValuatorMask *mask);
|
const ValuatorMask *mask);
|
||||||
|
|
||||||
|
int XIPropToInt(XIPropertyValuePtr val, int *nelem_return, int **buf_return);
|
||||||
|
|
||||||
|
int XIPropToFloat(XIPropertyValuePtr val, int *nelem_return, float **buf_return);
|
||||||
|
|
||||||
#endif /* _XSERVER_EXEVENTS_PRIV_H */
|
#endif /* _XSERVER_EXEVENTS_PRIV_H */
|
||||||
|
|
|
@ -26,11 +26,11 @@
|
||||||
|
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
|
|
||||||
|
#include "dix/exevents_priv.h"
|
||||||
#include "dix/ptrveloc_priv.h"
|
#include "dix/ptrveloc_priv.h"
|
||||||
#include "os/bug_priv.h"
|
#include "os/bug_priv.h"
|
||||||
|
|
||||||
#include <ptrveloc.h>
|
#include <ptrveloc.h>
|
||||||
#include <exevents.h>
|
|
||||||
#include <X11/Xatom.h>
|
#include <X11/Xatom.h>
|
||||||
#include <os.h>
|
#include <os.h>
|
||||||
|
|
||||||
|
|
|
@ -124,12 +124,6 @@ extern _X_EXPORT Atom XIGetKnownProperty(const char *name);
|
||||||
|
|
||||||
extern _X_EXPORT DeviceIntPtr XIGetDevice(xEvent *ev);
|
extern _X_EXPORT DeviceIntPtr XIGetDevice(xEvent *ev);
|
||||||
|
|
||||||
extern _X_EXPORT int XIPropToInt(XIPropertyValuePtr val,
|
|
||||||
int *nelem_return, int **buf_return);
|
|
||||||
|
|
||||||
extern _X_EXPORT int XIPropToFloat(XIPropertyValuePtr val,
|
|
||||||
int *nelem_return, float **buf_return);
|
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* End of driver interface *
|
* End of driver interface *
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
Loading…
Reference in New Issue