home *** CD-ROM | disk | FTP | other *** search
/ Meeting Pearls 3 / Meeting_Pearls_III.iso / Pearls / disk / Misc / dd / dev.h < prev    next >
C/C++ Source or Header  |  1991-11-30  |  770b  |  20 lines

  1. /*
  2.  * dev.h - device manipulation function prototypes
  3.  *
  4.  * Bruno Costa - 30 Nov 91 - 1 Dec 91
  5.  */
  6.  
  7. int devblocksize (void);
  8. int devsectorsize (void);
  9. void Motor (struct IOExtTD *disk, int onoff);
  10. int secread (struct IOExtTD *disk, long int offset);
  11. int secwrite (struct IOExtTD *disk, long int offset);
  12. int devread (struct IOExtTD *diskreq, BPTR f, long int skip, long int count);
  13. int devwrite (BPTR f, struct IOExtTD *diskreq, long int skip, long int count);
  14. void devinfo (char *dosname, char *execname,
  15.               struct FileSysStartupMsg *fss, struct DosEnvec *de,
  16.               struct Device *dev, struct DriveGeometry *geo);
  17. struct IOExtTD *opendev (char *devname, int justinfo);
  18. void closedev (char *devname, struct IOExtTD *diskreq);
  19. int deverror (long err);
  20.