home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Leser 15 / Amiga Plus Leser CD 15.iso / Tools / Development / MosaicSRC / libwww2 / HTMLGen.h < prev    next >
Encoding:
C/C++ Source or Header  |  2002-03-13  |  536 b   |  29 lines

  1. /*  */
  2.  
  3. /*              HTML generator
  4. */
  5.  
  6. #ifndef HTMLGEN_H
  7. #define HTMLGEN_H
  8.  
  9. #include "HTML.h"
  10. #include "HTStream.h"
  11.  
  12. /* Subclass:
  13. */
  14. /* extern CONST HTStructuredClass HTMLGeneration; */
  15.  
  16. /* Special Creation:
  17. */
  18. extern HTStructured * HTMLGenerator PARAMS((HTStream * output));
  19.  
  20. extern HTStream * HTPlainToHTML PARAMS((
  21.         HTPresentation *        pres,
  22.         HTParentAnchor *        anchor,
  23.         HTStream *              sink,
  24.         HTFormat                format_in,
  25.         int                     compressed));
  26.  
  27.  
  28. #endif
  29.