Added new 'bootcd' target.
[reactos.git] / reactos / include / ddk / ntddkbd.h
1 #ifndef _NTDDKBD_
2 #define _NTDDKBD_
3
4 typedef struct _KEYBOARD_INPUT_DATA {
5
6 //
7 // Unit number. E.g., for \Device\KeyboardPort0 the unit is '0',
8 // for \Device\KeyboardPort1 the unit is '1', and so on.
9 //
10
11 USHORT UnitId;
12 USHORT MakeCode;
13 USHORT Flags;
14 USHORT Reserved;
15 ULONG ExtraInformation;
16
17 } KEYBOARD_INPUT_DATA, *PKEYBOARD_INPUT_DATA;
18
19 #endif // _NTDDKBD_