home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 032.lha / include / exec / devices.g < prev    next >
Text File  |  1987-05-16  |  328b  |  22 lines

  1. type
  2.     Library_t = unknown 34,
  3.  
  4.     Device_t = struct {
  5.     Library_t dd_Library;
  6.     },
  7.  
  8.     Unit_t = struct {
  9.     *MsgPort unit_MsgPort;
  10.     byte unit_flags;
  11.     byte unit_pad;
  12.     uint unit_OpenCnt;
  13.     };
  14.  
  15. byte
  16.     UNITF_ACTIVE = 1 << 0,
  17.     UNITF_INTASK = 1 << 1;
  18.  
  19. extern
  20.     AddDevice(*Device_t d)void,
  21.     RemDevice(*Device_t d)bool;
  22.