cosmetic and comments for guacamole integration
[libguac-client-rdp.git] / include / unicode_convtable.h
1 #ifndef _GUAC_UNICODE_CONVTABLE_H
2 #define _GUAC_UNICODE_CONVTABLE_H
3
4 int keysym2uni(int keysym);
5
6 /* Keysym->unicode Exceptions tables */
7 int keysym2uni_base[65536];
8 int keysym2uni_ext0[4096];
9 int keysym2uni_ext1[4096];
10 int keysym2uni_ext2[4096];
11
12 /* Fill global tables, if needed (only on first call) */
13 void init_unicode_tables();
14
15 #endif