46486785b2ba9274eccb265a49ea1edd647442ec
[reactos.git] / reactos / subsystems / ntvdm / bios / kbdbios.h
1 /*
2 * COPYRIGHT: GPL - See COPYING in the top level directory
3 * PROJECT: ReactOS Virtual DOS Machine
4 * FILE: kbdbios.h
5 * PURPOSE: VDM Keyboard BIOS Support Library
6 * PROGRAMMERS: Hermes Belusca-Maito (hermes.belusca@sfr.fr)
7 */
8
9 #ifndef _KBDBIOS_H_
10 #define _KBDBIOS_H_
11
12 /* INCLUDES *******************************************************************/
13
14 #include "ntvdm.h"
15
16 /* DEFINES ********************************************************************/
17
18 #define BIOS_KBD_INTERRUPT 0x16
19
20 #define BIOS_KBD_BUFFER_SIZE 16
21
22 /* FUNCTIONS ******************************************************************/
23
24 WORD BiosGetCharacter(VOID);
25
26 BOOLEAN KbdBiosInitialize(VOID);
27 VOID KbdBiosCleanup(VOID);
28
29 #endif // _KBDBIOS_H_
30
31 /* EOF */