mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 10:35:28 +00:00
23 lines
674 B
C
23 lines
674 B
C
/*
|
|
* COPYRIGHT: GPL - See COPYING in the top level directory
|
|
* PROJECT: ReactOS Virtual DOS Machine
|
|
* FILE: subsystems/mvdm/ntvdm/bios/kbdbios.h
|
|
* PURPOSE: VDM 32-bit PS/2 Keyboard BIOS Support Library
|
|
* PROGRAMMERS: Hermes Belusca-Maito (hermes.belusca@sfr.fr)
|
|
*/
|
|
|
|
#ifndef _KBDBIOS_H_
|
|
#define _KBDBIOS_H_
|
|
|
|
/* DEFINES ********************************************************************/
|
|
|
|
#define BIOS_KBD_INTERRUPT 0x16
|
|
|
|
#define BIOS_KBD_BUFFER_SIZE 16
|
|
|
|
/* FUNCTIONS ******************************************************************/
|
|
|
|
BOOLEAN KbdBiosInitialize(VOID);
|
|
VOID KbdBiosCleanup(VOID);
|
|
|
|
#endif /* _KBDBIOS_H_ */
|