home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 103.lha / IntDevExpl / idev.h < prev    next >
C/C++ Source or Header  |  1986-11-21  |  678b  |  27 lines

  1. /*
  2. ** FILE:    idev.h
  3. ** PROGRAM:    idev
  4. ** VERSION:    1.0
  5. **
  6. ** DESCRIPTIPON:
  7. **    This file contains the function idev() and its support functions.
  8. **    It forms the heart of the program, and is responsible for all
  9. **    user interaction.  Idev() returns when the user asks to quit.
  10. **
  11. **    Idev() expects the device name, unit number and device flags
  12. **    as supplied by the user, and also the IORequest, properly
  13. **    initialized by OpenDevice() with the given parameters.
  14. **
  15. ** HISTORY:
  16. **    26-Aug-87    Original Version   (Ed Puckett)
  17. */
  18.  
  19. #ifndef IDEV_H
  20. #define IDEV_H
  21.  
  22. extern void  idev ( char *,  int,     struct IOStdReq *, ULONG );
  23. /*            devname, unitnum, ioreq,         flags    */
  24.  
  25. #endif IDEV_H
  26.  
  27.