xkb: unexport XkbApplyVirtualModChanges()
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
5447558c6d
commit
45a830aa25
|
@ -28,7 +28,6 @@ THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
#define _XKBSRV_H_
|
#define _XKBSRV_H_
|
||||||
|
|
||||||
#define XkbFreeKeyboard SrvXkbFreeKeyboard
|
#define XkbFreeKeyboard SrvXkbFreeKeyboard
|
||||||
#define XkbApplyVirtualModChanges SrvXkbApplyVirtualModChanges
|
|
||||||
|
|
||||||
#include <X11/Xdefs.h>
|
#include <X11/Xdefs.h>
|
||||||
#include <X11/extensions/XKBproto.h>
|
#include <X11/extensions/XKBproto.h>
|
||||||
|
@ -226,11 +225,6 @@ extern _X_EXPORT void XkbFreeRMLVOSet(XkbRMLVOSet * /* rmlvo */ ,
|
||||||
Bool /* freeRMLVO */
|
Bool /* freeRMLVO */
|
||||||
);
|
);
|
||||||
|
|
||||||
extern _X_EXPORT Bool XkbApplyVirtualModChanges(XkbDescPtr /* xkb */ ,
|
|
||||||
unsigned int /* changed */ ,
|
|
||||||
XkbChangesPtr /* changes */
|
|
||||||
);
|
|
||||||
|
|
||||||
extern _X_EXPORT void XkbSendNewKeyboardNotify(DeviceIntPtr /* kbd */ ,
|
extern _X_EXPORT void XkbSendNewKeyboardNotify(DeviceIntPtr /* kbd */ ,
|
||||||
xkbNewKeyboardNotify * /* pNKN */
|
xkbNewKeyboardNotify * /* pNKN */
|
||||||
);
|
);
|
||||||
|
|
|
@ -170,6 +170,8 @@ int XkbKeyTypesForCoreSymbols(XkbDescPtr xkb, int map_width, KeySym *core_syms,
|
||||||
unsigned int protected, int *types_inout,
|
unsigned int protected, int *types_inout,
|
||||||
KeySym *xkb_syms_rtrn);
|
KeySym *xkb_syms_rtrn);
|
||||||
Bool XkbApplyCompatMapToKey(XkbDescPtr xkb, KeyCode key, XkbChangesPtr changes);
|
Bool XkbApplyCompatMapToKey(XkbDescPtr xkb, KeyCode key, XkbChangesPtr changes);
|
||||||
|
Bool XkbApplyVirtualModChanges(XkbDescPtr xkb, unsigned int changed,
|
||||||
|
XkbChangesPtr changes);
|
||||||
|
|
||||||
|
|
||||||
extern DevPrivateKeyRec xkbDevicePrivateKeyRec;
|
extern DevPrivateKeyRec xkbDevicePrivateKeyRec;
|
||||||
|
|
Loading…
Reference in New Issue