home *** CD-ROM | disk | FTP | other *** search
- /*** StdFile Class Interface: stdfile.h ***/
-
- #include <stdio.h>
-
- DCL_METHODS(StdFile,File,(const char *nam,const char *acc))
- REDCL_METHOD(Seek,(long offset, int whence),long);
- REDCL_METHOD(Read,(void *buffer, int nbytes),int);
- REDCL_METHOD(Write,(void *buffer, int nbytes),int);
- END_METHODS
-
- DCL_MEMBERS(StdFile,File)
- FILE *handle;
- END_MEMBERS
-