home *** CD-ROM | disk | FTP | other *** search
/ High Voltage Shareware / high1.zip / high1 / DIR3 / FGSCROLL.ZIP / FILEIO.H < prev    next >
C/C++ Source or Header  |  1993-08-25  |  252b  |  14 lines

  1. // File io routines...
  2.  
  3. #include <io.h>
  4. #include <fcntl.h>
  5. #include <sys\stat.h>
  6.  
  7. #ifndef __FILE_IO_H
  8. #define __FILE_IO_H
  9.  
  10. void LoadFile(char *FileName, void *Data, int count);
  11. void SaveFile(char *FileName, void *Data, int count);
  12.  
  13. #endif
  14.