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:
Enrico Weigelt, metux IT consult 2025-05-15 17:52:06 +02:00
parent 6b772096ac
commit 233ea698e6
3 changed files with 5 additions and 7 deletions

View File

@ -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 */

View File

@ -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>

View File

@ -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 *
****************************************************************************/ ****************************************************************************/