home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / Misc / HF-SCL1.DMS / in.adf / inclib.lha / Inc / exec / devices.inc < prev    next >
Encoding:
Text File  |  1996-09-01  |  264 b   |  18 lines

  1. include "inc/exec/libraries.inc";
  2. include "inc/exec/ports.inc";
  3.  
  4. struct Device is
  5.   dd_Library:Library;
  6. ;
  7.  
  8. struct Unit is
  9.   unit_MsgPort:MsgPort;
  10.   unit_flags:ubyte;
  11.   unit_pad:ubyte;
  12.   unit_OpenCnt:uword;
  13. ;
  14.  
  15. def UNITF_ACTIVE = (1<<0);
  16. def UNITF_INTASK = (1<<1);
  17.  
  18.