Ви не можете вибрати більше 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