home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / Tools / lynx-2.4 / WWW / Library / Implementation / HTFWriter.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-06-28  |  998 b   |  38 lines

  1. /*                                                                     File Writer for libwww
  2.                                       C FILE WRITER
  3.                                              
  4.    It is useful to have both FWriter and Writer for environments in which fdopen() doesn't
  5.    exist for example.
  6.    
  7.  */
  8. #ifndef HTFWRITE_H
  9. #define HTFWRITE_H
  10.  
  11. #ifndef HTUTILS_H
  12. #include "HTUtils.h"
  13. #endif /* HTUTILS_H */
  14. #include "HTStream.h"
  15. /*#include <stdio.h> included by HTUtils.h -- FM */
  16. #include "HTFormat.h"
  17.  
  18. #ifdef SHORT_NAMES
  19. #define HTFWriter_new   HTFWnew
  20. #endif
  21.  
  22. extern HTStream * HTFWriter_new PARAMS((FILE * fp));
  23.  
  24. extern HTStream * HTSaveAndExecute PARAMS((
  25.         HTPresentation *        pres,
  26.         HTParentAnchor *        anchor, /* Not used */
  27.         HTStream *              sink));
  28.  
  29. extern HTStream * HTSaveLocally PARAMS((
  30.         HTPresentation *        pres,
  31.         HTParentAnchor *        anchor, /* Not used */
  32.         HTStream *              sink));
  33.  
  34. #endif
  35. /*
  36.  
  37.    end */
  38.