Added keysym strings for alt and all modifiers.
[libguac-client-rdp.git] / src / rdp_keymap.c
index e50c808..a1a8388 100644 (file)
 
 const int GUAC_KEYSYMS_SHIFT[] = {0xFFE1, 0};
 
+const int GUAC_KEYSYMS_ALT[] = {0xFFE9, 0};
+
+const int GUAC_KEYSYMS_ALL_MODIFIERS[] = {
+    0xFFE1, 0xFFE2, /* Left and right shift */
+    0xFFE3, 0xFFE4, /* Left and right control */
+    0xFFE9, 0xFFEA, /* Left and right alt */
+    0
+};
+