mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 00:34:39 +00:00
321bcc056d
svn path=/branches/GSoC_2016/AHCI/; revision=71203
25 lines
806 B
C
25 lines
806 B
C
/*
|
|
* COPYRIGHT: GPL - See COPYING in the top level directory
|
|
* PROJECT: ReactOS Virtual DOS Machine
|
|
* FILE: subsystems/mvdm/ntvdm/hardware/keyboard.h
|
|
* PURPOSE: Keyboard emulation
|
|
* PROGRAMMERS: Aleksandar Andrejevic <theflash AT sdf DOT lonestar DOT org>
|
|
*/
|
|
|
|
#ifndef _KEYBOARD_H_
|
|
#define _KEYBOARD_H_
|
|
|
|
/* DEFINES ********************************************************************/
|
|
|
|
/* Command responses */
|
|
#define KEYBOARD_BAT_SUCCESS 0xAA
|
|
#define KEYBOARD_ACK 0xFA
|
|
#define KEYBOARD_ERROR 0xFC
|
|
#define KEYBOARD_RESEND 0xFE
|
|
|
|
/* FUNCTIONS ******************************************************************/
|
|
|
|
VOID KeyboardEventHandler(PKEY_EVENT_RECORD KeyEvent);
|
|
BOOLEAN KeyboardInit(BYTE PS2Connector);
|
|
|
|
#endif /* _KEYBOARD_H_ */
|