home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 5 / FreshFish_July-August1994.bin / bbs / util / heartbeat-1.0.lha / HeartBeat-1.0 / cload_file.h next >
Encoding:
C/C++ Source or Header  |  1992-04-07  |  299 b   |  10 lines

  1. // Include Header to gain access to 'C' version of load_file()
  2.  
  3. struct FileCache {
  4.     char        *filebuf;        // ptr to cached file
  5.     unsigned int bufsize;        // # of bytes in cache (incl padding)
  6.     char        *filename;        // name of file in this cache
  7. };
  8.  
  9. IMPORT BOOL load_file( char * fname, struct FileCache * fc);
  10.