home *** CD-ROM | disk | FTP | other *** search
- {$if not def EXEC_DEVICES_H} CONST EXEC_DEVICES_H=0;
-
- { ****************************************************************
- ** KickPascal-Include-Datei "exec/devices.h" zu Kickstart 3.0 **
- **************************************************************** }
-
- TYPE p_Device = ^Device;
- TYPE p_Unit = ^Unit;
-
- {$if not def EXEC_LIBRARIES_H;incl "exec/libraries.h";endif}
- {$if not def EXEC_PORTS_H;incl "exec/ports.h";endif}
-
- TYPE Device = RECORD
- dd_Library : _Library ;
- END;
-
- TYPE Unit = RECORD
- unit_MsgPort : MsgPort;
- unit_flags : Byte;
- unit_pad : Byte;
- unit_OpenCnt : Word;
- END;
-
- CONST
- UNITF_ACTIVE = $1;
- UNITF_INTASK = $2;
-
- {$endif}
-