您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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