1 /* 2 * COPYRIGHT: GPL - See COPYING in the top level directory 3 * PROJECT: ReactOS Virtual DOS Machine 4 * FILE: subsystems/mvdm/ntvdm/bios/kbdbios.h 5 * PURPOSE: VDM 32-bit PS/2 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 /* DEFINES ********************************************************************/ 13 14 #define BIOS_KBD_INTERRUPT 0x16 15 16 #define BIOS_KBD_BUFFER_SIZE 16 17 18 /* FUNCTIONS ******************************************************************/ 19 20 BOOLEAN KbdBiosInitialize(VOID); 21 VOID KbdBiosCleanup(VOID); 22 23 #endif /* _KBDBIOS_H_ */ 24