HTMLGen.h
上传用户:zlh9724
上传日期:2007-01-04
资源大小:1991k
文件大小:1k
源码类别:

浏览器

开发平台:

Unix_Linux

  1. /*                                                                             HTML Generator
  2.                                       HTML GENERATOR
  3.                                              
  4.  */
  5. /*
  6. **      (c) COPYRIGHT MIT 1995.
  7. **      Please first read the full copyright statement in the file COPYRIGH.
  8. */
  9. /*
  10.    This module converts structed stream into stream.  That is, given a stream to write to,
  11.    it will give you a structured stream to.
  12.    
  13.    This module is implemented by HTMLGen.c, and it is a part of the  W3C Reference
  14.    Library.
  15.    
  16.  */
  17. #ifndef HTMLGEN_H
  18. #define HTMLGEN_H
  19. #include "HTStruct.h"
  20. #include "HTFormat.h"
  21. /*
  22.    The HTML generator stream is almost a converter stream but it returns a structured
  23.    stream instead of a generic stream. The difference is that a structured stream has
  24.    methods for starting and ending mark up elements and for HTML/SGML entities.
  25.    
  26.  */
  27. extern HTStructured* HTMLGenerator (HTRequest * request,
  28.                                    void *       param,
  29.                                    HTFormat     input_format,
  30.                                    HTFormat     output_format,
  31.                                    HTStream *   output_stream);
  32. extern HTConverter HTPlainToHTML;
  33. #endif
  34. /*
  35.    End of declaration  */