Pierre Ossman | d014d05 | 2011-03-09 13:28:12 +0000 | [diff] [blame] | 1 | /* |
2 | * This module converts keysym values into the corresponding ISO 10646-1 | ||||
3 | * (UCS, Unicode) values. | ||||
4 | */ | ||||
5 | |||||
6 | #ifdef __cplusplus | ||||
7 | extern "C" { | ||||
8 | #endif | ||||
9 | |||||
10 | unsigned keysym2ucs(unsigned keysym); | ||||
11 | unsigned ucs2keysym(unsigned ucs); | ||||
12 | |||||
Pierre Ossman | 796580a | 2014-07-21 16:36:50 +0200 | [diff] [blame^] | 13 | unsigned ucs2combining(unsigned spacing); |
14 | |||||
Pierre Ossman | d014d05 | 2011-03-09 13:28:12 +0000 | [diff] [blame] | 15 | #ifdef __cplusplus |
16 | } | ||||
17 | #endif |