The, uhh, missing stufff.........

This commit is contained in:
waltje
2017-05-18 14:03:43 -04:00
parent c5bb5db754
commit a4a69f71eb
50 changed files with 16436 additions and 6 deletions

22
src/WIN/plat_keyboard.h Normal file
View File

@@ -0,0 +1,22 @@
/* Copyright holders: Sarah Walker
see COPYING for more details
*/
#ifdef __cplusplus
extern "C" {
#endif
void keyboard_init();
void keyboard_close();
void keyboard_poll_host();
extern int recv_key[272];
extern int rawinputkey[272];
#ifndef __unix
#define KEY_LCONTROL 0x1d
#define KEY_RCONTROL (0x1d | 0x80)
#define KEY_END (0x4f | 0x80)
#endif
#ifdef __cplusplus
}
#endif