mirror of https://github.com/axmolengine/axmol.git
9 lines
167 B
C
9 lines
167 B
C
|
/*
|
||
|
* This module converts keysym values into the corresponding ISO 10646-1
|
||
|
* (UCS, Unicode) values.
|
||
|
*/
|
||
|
|
||
|
#include <X11/X.h>
|
||
|
|
||
|
long keysym2ucs(KeySym keysym);
|