keyboard.pas 926 B

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