Annotation of libwww/Library/src/HTMLGen.html, revision 2.17

2.6       timbl       1: <HTML>
                      2: <HEAD>
2.8       frystyk     3: <TITLE>HTML Generator</TITLE>
2.16      frystyk     4: <!-- Changed by: Henrik Frystyk Nielsen, 27-Aug-1995 -->
2.8       frystyk     5: </HEAD>
2.6       timbl       6: <BODY>
2.8       frystyk     7: 
                      8: <H1>HTML generator</H1>
                      9: 
2.9       frystyk    10: <PRE>
                     11: /*
2.13      frystyk    12: **     (c) COPYRIGHT MIT 1995.
2.9       frystyk    13: **     Please first read the full copyright statement in the file COPYRIGH.
                     14: */
                     15: </PRE>
                     16: 
2.8       frystyk    17: This module converts structed stream into stream.  That is, given a
2.9       frystyk    18: stream to write to, it will give you a structured stream to. <P>
                     19: 
2.16      frystyk    20: This module is implemented by <A HREF="HTMLGen.c">HTMLGen.c</A>, and
                     21: it is a part of the <A
2.17    ! frystyk    22: HREF="http://www.w3.org/pub/WWW/Library/"> W3C Reference
2.16      frystyk    23: Library</A>.
2.8       frystyk    24: 
                     25: <PRE>
                     26: #ifndef HTMLGEN_H
2.1       timbl      27: #define HTMLGEN_H
                     28: 
2.15      frystyk    29: #include "HTStruct.h"
2.16      frystyk    30: #include "HTFormat.h"
                     31: #include "HTMLPDTD.h"
                     32: 
                     33: extern HTStructured* HTMLGenerator PARAMS((HTRequest * request,
                     34:                                           void *       param,
                     35:                                           HTFormat     input_format,
                     36:                                           HTFormat     output_format,
                     37:                                           HTStream *   output_stream));
2.1       timbl      38: 
                     39: 
2.11      frystyk    40: #ifndef pyramid
2.7       timbl      41: extern HTConverter HTPlainToHTML;
2.8       frystyk    42: #endif
2.1       timbl      43: 
                     44: #endif
2.11      frystyk    45: </PRE>
2.15      frystyk    46: 
                     47: End of declaration
                     48: 
2.11      frystyk    49: </BODY>
2.6       timbl      50: </HTML>

Webmaster