1 {
2     This file is part of the Free Pascal run time library.
3 
4     A file in Amiga system run time library.
5     Copyright (c) 1998 by Nils Sjoholm
6     member of the Amiga RTL development team.
7 
8     See the file COPYING.FPC, included in this distribution,
9     for details about the copyright.
10 
11     This program is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
14 
15  **********************************************************************}
16 
17 {
18         Keyboard device command definitions
19 }
20 
21 unit akeyboard;
22 
23 INTERFACE
24 
25 uses exec;
26 
27 
28 Const
29     KBD_READEVENT               = CMD_NONSTD + 0;
30     KBD_READMATRIX              = CMD_NONSTD + 1;
31     KBD_ADDRESETHANDLER         = CMD_NONSTD + 2;
32     KBD_REMRESETHANDLER         = CMD_NONSTD + 3;
33     KBD_RESETHANDLERDONE        = CMD_NONSTD + 4;
34 
35 IMPLEMENTATION
36 
37 end.
38