blob: a09165b9b497f0a163bc5e5bcf51084bb0ae3dae [file] [log] [blame]
Pierre Ossmand014d052011-03-09 13:28:12 +00001/*
2 * This module converts keysym values into the corresponding ISO 10646-1
3 * (UCS, Unicode) values.
4 */
5
6#ifdef __cplusplus
7extern "C" {
8#endif
9
10unsigned keysym2ucs(unsigned keysym);
11unsigned ucs2keysym(unsigned ucs);
12
13#ifdef __cplusplus
14}
15#endif