Difference between revisions of "Keyboard.device"
Jump to navigation
Jump to search
(Added page + cradle) |
(→The unit: Added) |
||
| Line 52: | Line 52: | ||
<source lang="pascal"> | <source lang="pascal"> | ||
| + | unit aros_device_keyboard; | ||
| + | |||
| + | {$MODE OBJFPC}{$H+} | ||
| + | |||
| + | interface | ||
| + | |||
| + | Uses | ||
| + | Exec; | ||
| + | |||
| + | |||
| + | Const | ||
| + | //********************************************************************** | ||
| + | //********************** Keyboard Device Commands ********************** | ||
| + | //**********************************************************************/ | ||
| + | |||
| + | KBD_READEVENT = (CMD_NONSTD + 0); | ||
| + | KBD_READMATRIX = (CMD_NONSTD + 1); | ||
| + | KBD_ADDRESETHANDLER = (CMD_NONSTD + 2); | ||
| + | KBD_REMRESETHANDLER = (CMD_NONSTD + 3); | ||
| + | KBD_RESETHANDLERDONE = (CMD_NONSTD + 4); | ||
| + | |||
| + | implementation | ||
| + | |||
| + | end. | ||
</source> | </source> | ||
Revision as of 17:48, 21 March 2015
Short explanatory description not available.
Description
There's no description available.
Usage
There is no usage information available.
Examples
Example: ( insert example title )
There's no example available.
Example: ( insert example title )
There's no example available.
Example: ( insert example title )
There's no example available.
The unit
The header unit source-code is not available.
unit aros_device_keyboard;
{$MODE OBJFPC}{$H+}
interface
Uses
Exec;
Const
//**********************************************************************
//********************** Keyboard Device Commands **********************
//**********************************************************************/
KBD_READEVENT = (CMD_NONSTD + 0);
KBD_READMATRIX = (CMD_NONSTD + 1);
KBD_ADDRESETHANDLER = (CMD_NONSTD + 2);
KBD_REMRESETHANDLER = (CMD_NONSTD + 3);
KBD_RESETHANDLERDONE = (CMD_NONSTD + 4);
implementation
end.
Unit documentation
Currently there's no Free Pascal specific documentation available for this unit. Please consult the original SDK.