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:
Enrico Weigelt, metux IT consult 2024-04-04 17:37:18 +02:00
parent 97b98c18c3
commit fd7cf62ccc
2 changed files with 5 additions and 13 deletions

View File

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

View File

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