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:
Enrico Weigelt, metux IT consult 2024-04-05 11:41:13 +02:00
parent 5447558c6d
commit 45a830aa25
2 changed files with 2 additions and 6 deletions

View File

@ -28,7 +28,6 @@ THE USE OR PERFORMANCE OF THIS SOFTWARE.
#define _XKBSRV_H_
#define XkbFreeKeyboard SrvXkbFreeKeyboard
#define XkbApplyVirtualModChanges SrvXkbApplyVirtualModChanges
#include <X11/Xdefs.h>
#include <X11/extensions/XKBproto.h>
@ -226,11 +225,6 @@ extern _X_EXPORT void XkbFreeRMLVOSet(XkbRMLVOSet * /* rmlvo */ ,
Bool /* freeRMLVO */
);
extern _X_EXPORT Bool XkbApplyVirtualModChanges(XkbDescPtr /* xkb */ ,
unsigned int /* changed */ ,
XkbChangesPtr /* changes */
);
extern _X_EXPORT void XkbSendNewKeyboardNotify(DeviceIntPtr /* kbd */ ,
xkbNewKeyboardNotify * /* pNKN */
);

View File

@ -170,6 +170,8 @@ int XkbKeyTypesForCoreSymbols(XkbDescPtr xkb, int map_width, KeySym *core_syms,
unsigned int protected, int *types_inout,
KeySym *xkb_syms_rtrn);
Bool XkbApplyCompatMapToKey(XkbDescPtr xkb, KeyCode key, XkbChangesPtr changes);
Bool XkbApplyVirtualModChanges(XkbDescPtr xkb, unsigned int changed,
XkbChangesPtr changes);
extern DevPrivateKeyRec xkbDevicePrivateKeyRec;