Compare commits
1 Commits
master
...
submit/xi-
Author | SHA1 | Date | |
---|---|---|---|
|
56d1585d20 |
|
@ -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