home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / CMDS / mtools_3.6.src.lzh / MTOOLS_3.6 / plain_io.h < prev    next >
Text File  |  1997-11-12  |  376b  |  17 lines

  1. #ifndef MTOOLS_PLAINIO_H
  2. #define MTOOLS_PLAINIO_H
  3.  
  4. #include "stream.h"
  5. #include "msdos.h"
  6.  
  7. /* plain io */
  8. #define NO_PRIV 1
  9. #define NO_OFFSET 2
  10.  
  11. Stream_t *SimpleFileOpen(struct device *dev, struct device *orig_dev,
  12.              const char *name, int mode, char *errmsg, int mode2);
  13. int check_parameters(struct device *ref, struct device *testee);
  14.  
  15. int get_fd(Stream_t *Stream);
  16. #endif
  17.