Make keysym <-> string conversion public API
Signed-off-by: Daniel Stone <daniel@fooishbar.org>master
parent
62eb167d56
commit
70b64213ca
|
@ -141,6 +141,12 @@ XkbcCompileKeymapFromFile(FILE *inputFile, const char *mapName);
|
|||
extern XkbComponentListPtr
|
||||
XkbcListComponents(XkbComponentNamesPtr ptrns, int *maxMatch);
|
||||
|
||||
extern char *
|
||||
XkbcKeysymToString(KeySym ks);
|
||||
|
||||
extern KeySym
|
||||
XkbcStringToKeysym(const char *s);
|
||||
|
||||
_XFUNCPROTOEND
|
||||
|
||||
#endif /* _XKBCOMMON_H_ */
|
||||
|
|
|
@ -33,12 +33,6 @@ authorization from the authors.
|
|||
#include <X11/extensions/XKBrulescommon.h>
|
||||
#include "X11/extensions/XKBcommon.h"
|
||||
|
||||
extern char *
|
||||
XkbcKeysymToString(KeySym ks);
|
||||
|
||||
extern KeySym
|
||||
XkbcStringToKeysym(const char *s);
|
||||
|
||||
/***====================================================================***/
|
||||
|
||||
extern Bool
|
||||
|
|
Loading…
Reference in New Issue