summaryrefslogtreecommitdiffstats
path: root/vncviewer/keysym2ucs.h
blob: 01a7ddb0f4014417d7e49ac2e9024251a28f85c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * 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);

unsigned ucs2combining(unsigned spacing);

#ifdef __cplusplus
}
#endif