home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Amiga 13 / MA_Cover_13.bin / source / c / stefanb_src / private_projects / yath / io.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-09-06  |  490 b   |  17 lines

  1. #include <exec/types.h>
  2. #include <exec/io.h>
  3. #include <devices/scsidisk.h>
  4. #include <clib/exec_protos.h>
  5.  
  6. struct scsichan {
  7.                  char *name; /* Name des Device */
  8.                  ULONG unit; /* Unitnummer */
  9.                  ULONG flags; /* Flags */
  10.                  struct MsgPort *iop;
  11.                  struct IOStdReq *ior;
  12.                 };
  13.  
  14. BYTE OpenSCSIchan(struct scsichan *);
  15. BYTE DoSCSIcmd(struct scsichan *, struct SCSICmd *);
  16. BYTE CloseSCSIchan(struct scsichan *);
  17.