1
0
mirror of https://github.com/rzzzwilson/pymlac.git synced 2025-06-10 09:32:41 +00:00
2015-10-16 10:27:28 +07:00

13 lines
164 B
C
Executable File

/*
* Interface for the vimlac KB device (keyboard).
*/
#ifndef KB_H
#define KB_H
void kb_clear_flag(void);
BYTE kb_get_char(void);
bool kb_ready(void);
#endif