First working implementation with special characters handled by unicodekeyboardevents.
[libguac-client-rdp.git] / include / unicode_convtable.h
1
2 #ifndef _GUAC_UNICODE_CONVTABLE_H
3 #define _GUAC_UNICODE_CONVTABLE_H
4
5 int keysym2uni(int keysym);
6
7 /* Keysym->unicode Exceptions tables */
8 int keysym2uni_base[65536];// = { 0x0 };
9 int keysym2uni_ext0[4096];// = { 0x0 };
10 int keysym2uni_ext1[4096];// = { 0x0 };
11 int keysym2uni_ext2[4096];// = { 0x0 };
12
13
14
15 /* Fill global tables, if needed (only on first call) */
16 void init_unicode_tables();
17
18 #endif