PCem
view src/plat-keyboard.h @ 124:457f666b38c1
Keyboard now uses raw input. Should fix international keyboard. Based on patch from Battler.
| author | TomW |
|---|---|
| date | Fri Jul 11 20:35:37 2014 +0100 |
| parents | bba9a2b71a78 |
| children | d0d530adce12 |
line source
1 #ifdef __cplusplus
2 extern "C" {
3 #endif
4 void keyboard_init();
5 void keyboard_close();
6 void keyboard_poll_host();
7 int key[272];
8 int rawinputkey[272];
10 #define KEY_LCONTROL 0x1d
11 #define KEY_RCONTROL (0x1d | 0x80)
12 #define KEY_END (0x4f | 0x80)
13 #ifdef __cplusplus
14 }
15 #endif
