HTMLGen.h 678 B

123456789101112131415161718192021222324252627
  1. /* /Net/dxcern/userd/timbl/hypertext/WWW/Library/Implementation/HTMLGen.html
  2. HTML GENERATOR
  3. This module converts structed stream into stream. That is, given a stream
  4. to write to, it will give you a structured stream to
  5. */
  6. #ifndef HTMLGEN_H
  7. #define HTMLGEN_H
  8. #include <HTML.h>
  9. #include <HTStream.h>
  10. #ifdef __cplusplus
  11. extern "C" {
  12. #endif
  13. extern HTStructured *HTMLGenerator(HTStream *output);
  14. extern HTStream *HTPlainToHTML(HTPresentation *pres,
  15. HTParentAnchor *anchor,
  16. HTStream *sink);
  17. #ifdef __cplusplus
  18. }
  19. #endif
  20. #endif /* HTMLGEN_H */