home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / magazine / drdobbs / ddjcompr / ashford / files.h < prev    next >
Text File  |  1991-04-14  |  347b  |  13 lines

  1. #define IN_BUF_SIZE     512
  2. #define OUT_BUF_SIZE    512
  3.  
  4. void OpenOutputFile (char *);
  5. long OpenInputFile (char *);
  6. int ReadInputFile (void);
  7. unsigned ReadBinaryInput (void);
  8. void WriteOutputFile (int);
  9. void CloseInputFile (void);
  10. void CloseOutputFile (void);
  11. unsigned long GetOutputLength (void);
  12. unsigned long GetInputLength (void);
  13.