home *** CD-ROM | disk | FTP | other *** search
/ High Voltage Shareware / high1.zip / high1 / DIR41 / CUJ0793.ZIP / STDFILE.H < prev    next >
Text File  |  1993-01-08  |  376b  |  15 lines

  1. /*** StdFile Class Interface: stdfile.h ***/
  2.  
  3. #include <stdio.h>
  4.  
  5. DCL_METHODS(StdFile,File,(const char *nam,const char *acc))
  6.     REDCL_METHOD(Seek,(long offset, int whence),long);
  7.     REDCL_METHOD(Read,(void *buffer, int nbytes),int);
  8.     REDCL_METHOD(Write,(void *buffer, int nbytes),int);
  9. END_METHODS
  10.  
  11. DCL_MEMBERS(StdFile,File)
  12.    FILE *handle;
  13. END_MEMBERS
  14.  
  15.