xkb: unexport XkbKeyTypesForCoreSymbols()
Not used by any drivers, so no need to keep it exported. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
parent
37703270f4
commit
b3d105a78b
|
@ -27,7 +27,6 @@ THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
#ifndef _XKBSRV_H_
|
#ifndef _XKBSRV_H_
|
||||||
#define _XKBSRV_H_
|
#define _XKBSRV_H_
|
||||||
|
|
||||||
#define XkbKeyTypesForCoreSymbols SrvXkbKeyTypesForCoreSymbols
|
|
||||||
#define XkbApplyCompatMapToKey SrvXkbApplyCompatMapToKey
|
#define XkbApplyCompatMapToKey SrvXkbApplyCompatMapToKey
|
||||||
#define XkbFreeKeyboard SrvXkbFreeKeyboard
|
#define XkbFreeKeyboard SrvXkbFreeKeyboard
|
||||||
#define XkbApplyVirtualModChanges SrvXkbApplyVirtualModChanges
|
#define XkbApplyVirtualModChanges SrvXkbApplyVirtualModChanges
|
||||||
|
@ -228,14 +227,6 @@ extern _X_EXPORT void XkbFreeRMLVOSet(XkbRMLVOSet * /* rmlvo */ ,
|
||||||
Bool /* freeRMLVO */
|
Bool /* freeRMLVO */
|
||||||
);
|
);
|
||||||
|
|
||||||
extern _X_EXPORT int XkbKeyTypesForCoreSymbols(XkbDescPtr /* xkb */ ,
|
|
||||||
int /* map_width */ ,
|
|
||||||
KeySym * /* core_syms */ ,
|
|
||||||
unsigned int /* protected */ ,
|
|
||||||
int * /* types_inout */ ,
|
|
||||||
KeySym * /* xkb_syms_rtrn */
|
|
||||||
);
|
|
||||||
|
|
||||||
extern _X_EXPORT Bool XkbApplyCompatMapToKey(XkbDescPtr /* xkb */ ,
|
extern _X_EXPORT Bool XkbApplyCompatMapToKey(XkbDescPtr /* xkb */ ,
|
||||||
KeyCode /* key */ ,
|
KeyCode /* key */ ,
|
||||||
XkbChangesPtr /* changes */
|
XkbChangesPtr /* changes */
|
||||||
|
|
|
@ -166,6 +166,9 @@ int XkbChangeKeycodeRange(XkbDescPtr xkb, int minKC, int maxKC, XkbChangesPtr ch
|
||||||
void XkbFreeInfo(XkbSrvInfoPtr xkbi);
|
void XkbFreeInfo(XkbSrvInfoPtr xkbi);
|
||||||
int XkbChangeTypesOfKey(XkbDescPtr xkb, int key, int nGroups, unsigned int groups,
|
int XkbChangeTypesOfKey(XkbDescPtr xkb, int key, int nGroups, unsigned int groups,
|
||||||
int *newTypesIn, XkbMapChangesPtr changes);
|
int *newTypesIn, XkbMapChangesPtr changes);
|
||||||
|
int XkbKeyTypesForCoreSymbols(XkbDescPtr xkb, int map_width, KeySym *core_syms,
|
||||||
|
unsigned int protected, int *types_inout,
|
||||||
|
KeySym *xkb_syms_rtrn);
|
||||||
|
|
||||||
|
|
||||||
extern DevPrivateKeyRec xkbDevicePrivateKeyRec;
|
extern DevPrivateKeyRec xkbDevicePrivateKeyRec;
|
||||||
|
|
Loading…
Reference in New Issue