You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

keysym2ucs.h 292B

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