home *** CD-ROM | disk | FTP | other *** search
- (*-------------------------------------------------------------------------*)
- (* *)
- (* Amiga Oberon Interface Module: Date: 02-Nov-92 *)
- (* *)
- (* © 1992 by Fridtjof Siebert *)
- (* *)
- (*-------------------------------------------------------------------------*)
-
- MODULE Input;
-
- IMPORT e * := Exec;
-
- CONST
-
- addHandler * = e.nonstd+0;
- remHandler * = e.nonstd+1;
- writeEvent * = e.nonstd+2;
- setThresh * = e.nonstd+3;
- setPeriod * = e.nonstd+4;
- setMPort * = e.nonstd+5;
- setMType * = e.nonstd+6;
- setMTrig * = e.nonstd+7;
-
- VAR
-
- (*
- * You have to put a pointer to the input.device here to use the input
- * procedures:
- *)
-
- base * : e.DevicePtr;
-
- (*--- functions in V36 or higher (distributed as Release 2.0) ---*)
- PROCEDURE PeekQualifier*{base,-42}(): INTEGER;
-
- END Input.
-
-