home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / Telnet 2.7b5 / source / FTPserver / binsubs.proto.h < prev    next >
Encoding:
Text File  |  1993-10-24  |  387 b   |  27 lines  |  [TEXT/CWIE]

  1. void GetFileInfo(short volume, long dirID, StringPtr name, HFileParam *iop);
  2. long MBsize( MBFile *mbfp);
  3. MBFile *MBopen(char *file, short vrefnum, long dirID, short mode);
  4.  
  5. void init_mb_files(void);
  6. void close_mb_files(void);
  7.  
  8. long MBread
  9.   (
  10.     MBFile *in,
  11.     void *buffer,
  12.     long size
  13.   );
  14.  
  15. long MBwrite
  16.   (
  17.     MBFile *out,
  18.     void *buffer,
  19.     long size
  20.   );
  21.  
  22. void MBclose
  23.   (
  24.     MBFile *out
  25.   );
  26.  
  27.