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

#ifdef __cplusplus
}
#endif