Annotation of libwww/Library/src/WWWHTML.html, revision 2.7

2.1       frystyk     1: <HTML>
                      2: <HEAD>
2.6       frystyk     3: <TITLE>W3C Sample Code Library libwww HTML PARSER</TITLE>
2.5       frystyk     4: <!-- Changed by: Henrik Frystyk Nielsen, 16-Apr-1996 -->
2.1       frystyk     5: <NEXTID N="z11">
                      6: </HEAD>
                      7: <BODY>
                      8: 
2.6       frystyk     9: <H1>Declaration of W3C Sample Code HTML MODULE</H1>
2.1       frystyk    10: 
                     11: <PRE>
                     12: /*
                     13: **     (c) COPYRIGHT MIT 1995.
                     14: **     Please first read the full copyright statement in the file COPYRIGH.
                     15: */
                     16: </PRE>
                     17: 
2.2       frystyk    18: This is the include file for the basic HTML module that can be used
2.6       frystyk    19: together with the core of the W3C Sample Code Library. It contains all
2.2       frystyk    20: HTML specific modules which are required to compile and build the HTML
                     21: DLL.  Please note that as the HText is <B>not</B> included in this
                     22: interface. The reason is that the HText interface only is declared by
                     23: the Library but must be defined by the application. Therefore it can
                     24: not be part of a DLL but must be included directly in the
                     25: application.<P>
2.1       frystyk    26: 
                     27: <PRE>
                     28: #ifndef WWWHTML_H
                     29: #define WWWHTML_H
                     30: </PRE>
                     31: 
                     32: <PRE>
                     33: #ifdef __cplusplus
                     34: extern "C" { 
                     35: #endif
                     36: </PRE>
                     37: 
2.5       frystyk    38: <H2>System dependencies</H2>
                     39: 
2.7     ! frystyk    40: The <A HREF="wwwsys.html">wwwsys.h</A> file includes system-specific include
2.5       frystyk    41: files and flags for I/O to network and disk. The only reason for this
                     42: file is that the Internet world is more complicated than Posix and
                     43: ANSI.
                     44: 
2.1       frystyk    45: <PRE>
2.7     ! frystyk    46: #include "wwwsys.h"
2.5       frystyk    47: </PRE>
                     48: 
                     49: <H2>Library Includes</H2>
                     50: 
                     51: <PRE>
2.1       frystyk    52: #include "HTMLPDTD.h"
                     53: #include "SGML.h"
                     54: #include "HTMLGen.h"
                     55: #include "HTTeXGen.h"
                     56: </PRE>
                     57: 
                     58: End of HTML module
                     59: 
                     60: <PRE>
                     61: #ifdef __cplusplus
                     62: } /* end extern C definitions */
                     63: #endif
                     64: 
                     65: #endif
                     66: </PRE>
                     67: 
2.4       frystyk    68: <HR>
                     69: <ADDRESS>
2.7     ! frystyk    70: @(#) $Id: WWWHTML.html,v 2.6 1997/02/16 18:43:24 frystyk Exp $
2.4       frystyk    71: </ADDRESS>
2.1       frystyk    72: </BODY>
                     73: </HTML>

Webmaster