home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 5 / DATAFILE_PDCD5.iso / utilities / m / makealf / Source / h / lowfile < prev    next >
Text File  |  1994-04-27  |  436b  |  17 lines

  1. /* >h.lowfile */
  2.  
  3. /* header file for my low-level file access commands */
  4.  
  5. int  low_open(char *name,int mode);
  6. void low_close(int handle);
  7. int  low_eof(int handle);
  8. int  low_read(int handle, void *buffer, int nbytes);
  9. void low_write(int handle, void *buffer, int nbytes);
  10. int  low_ptr(int handle);
  11. void low_setptr(int handle, int ptr);
  12. int  low_extent(int handle);
  13.  
  14. #define low_READ 0x40
  15. #define low_CREATE 0x80
  16. #define low_UPDATE 0xC0
  17.