1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/* * This module converts keysym values into the corresponding ISO 10646-1 * (UCS, Unicode) values. */ #ifdef __cplusplus extern "C" { #endif unsigned keysym2ucs(unsigned keysym); unsigned ucs2keysym(unsigned ucs); #ifdef __cplusplus } #endif