xkb: unexport client resource functions
These aren't used by any drivers, so no need to keep them exported. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
parent
97b98c18c3
commit
fd7cf62ccc
|
@ -540,19 +540,6 @@ extern _X_EXPORT Bool XkbEnableDisableControls(XkbSrvInfoPtr /* xkbi */ ,
|
||||||
XkbEventCausePtr /* cause */
|
XkbEventCausePtr /* cause */
|
||||||
);
|
);
|
||||||
|
|
||||||
extern _X_EXPORT XkbInterestPtr XkbFindClientResource(DevicePtr /* inDev */ ,
|
|
||||||
ClientPtr /* client */
|
|
||||||
);
|
|
||||||
|
|
||||||
extern _X_EXPORT XkbInterestPtr XkbAddClientResource(DevicePtr /* inDev */ ,
|
|
||||||
ClientPtr /* client */ ,
|
|
||||||
XID /* id */
|
|
||||||
);
|
|
||||||
|
|
||||||
extern _X_EXPORT int XkbRemoveResourceClient(DevicePtr /* inDev */ ,
|
|
||||||
XID /* id */
|
|
||||||
);
|
|
||||||
|
|
||||||
extern _X_EXPORT int XkbDDXUsesSoftRepeat(DeviceIntPtr /* dev */
|
extern _X_EXPORT int XkbDDXUsesSoftRepeat(DeviceIntPtr /* dev */
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
@ -132,4 +132,9 @@ void AccessXCancelRepeatKey(XkbSrvInfoPtr xkbi, KeyCode key);
|
||||||
void AccessXComputeCurveFactor(XkbSrvInfoPtr xkbi, XkbControlsPtr ctrls);
|
void AccessXComputeCurveFactor(XkbSrvInfoPtr xkbi, XkbControlsPtr ctrls);
|
||||||
int XkbDDXAccessXBeep(DeviceIntPtr dev, unsigned int what, unsigned int which);
|
int XkbDDXAccessXBeep(DeviceIntPtr dev, unsigned int what, unsigned int which);
|
||||||
|
|
||||||
|
/* client resources */
|
||||||
|
XkbInterestPtr XkbFindClientResource(DevicePtr inDev, ClientPtr client);
|
||||||
|
XkbInterestPtr XkbAddClientResource(DevicePtr inDev, ClientPtr client, XID id);
|
||||||
|
int XkbRemoveResourceClient(DevicePtr inDev, XID id);
|
||||||
|
|
||||||
#endif /* _XSERVER_XKBSRV_PRIV_H_ */
|
#endif /* _XSERVER_XKBSRV_PRIV_H_ */
|
||||||
|
|
Loading…
Reference in New Issue