XFreeModifiermap() XFreeModifiermap()
Name
XFreeModifiermap - destroy and free a keyboard modifier mapping structure.
Synopsis
XFreeModifiermap(modmap)
XModifierKeymap *modmap;
Arguments
modmap Specifies a pointer to the XModifierKeymap() structure to be freed.
Description
XFreeModifiermap() frees an XModifierKeymap() structure originally allocated by XNewModifierMap or XGetModifierMapping().
For more information, see Volume One, Chapter 9, The Keyboard and Pointer.
Structures
typedef struct {
int max_keypermod; /* server's max number of keys per modifier */
KeyCode *modifiermap; /* an 8 by max_keypermod array of
* keycodes to be used as modifiers */
} XModifierKeymap;
See Also
XChangeKeyboardMapping(), XDeleteModifiermapEntry(), XGetKeyboardMapping(), XGetModifierMapping(), XInsertModifiermapEntry(), XKey-
codeToKeysym(), XKeysymToKeycode(), XKeysymToString(), XLookupKeysym(), XLookupString(), XNewModifierMap, XQueryKeymap(), XRebindKeySym,
XRefreshKeyboardMapping(), XSetModifierMapping(), XStringToKeysym().
Xlib - Keyboard XFreeModifiermap()