[NTVDM]
[reactos.git] / reactos / subsystems / mvdm / ntvdm / hardware / keyboard.h
1 /*
2 * COPYRIGHT: GPL - See COPYING in the top level directory
3 * PROJECT: ReactOS Virtual DOS Machine
4 * FILE: keyboard.h
5 * PURPOSE: Keyboard emulation
6 * PROGRAMMERS: Aleksandar Andrejevic <theflash AT sdf DOT lonestar DOT org>
7 */
8
9 #ifndef _KEYBOARD_H_
10 #define _KEYBOARD_H_
11
12 /* DEFINES ********************************************************************/
13
14 /* Command responses */
15 #define KEYBOARD_ACK 0xFA
16 #define KEYBOARD_RESEND 0xFE
17
18 /* FUNCTIONS ******************************************************************/
19
20 VOID KeyboardEventHandler(PKEY_EVENT_RECORD KeyEvent);
21 BOOLEAN KeyboardInit(BYTE PS2Connector);
22
23 #endif // _KEYBOARD_H_