File:  [Public] / libwww / Library / src / WWWHTML.html
Revision 2.6: download - view: text, annotated - select for diffs
Sun Feb 16 18:43:24 1997 UTC (27 years, 3 months ago) by frystyk
Branches: MAIN
CVS tags: Release-5-1l, Release-5-1k, Release-5-1j, Release-5-1g, Release-5-1e, Release-5-1d, Release-5-1b, Release-5-1a, Release-5-1, HEAD
Changed name of sample coed library

<HTML>
<HEAD>
<TITLE>W3C Sample Code Library libwww HTML PARSER</TITLE>
<!-- Changed by: Henrik Frystyk Nielsen, 16-Apr-1996 -->
<NEXTID N="z11">
</HEAD>
<BODY>

<H1>Declaration of W3C Sample Code HTML MODULE</H1>

<PRE>
/*
**	(c) COPYRIGHT MIT 1995.
**	Please first read the full copyright statement in the file COPYRIGH.
*/
</PRE>

This is the include file for the basic HTML module that can be used
together with the core of the W3C Sample Code Library. It contains all
HTML specific modules which are required to compile and build the HTML
DLL.  Please note that as the HText is <B>not</B> included in this
interface. The reason is that the HText interface only is declared by
the Library but must be defined by the application. Therefore it can
not be part of a DLL but must be included directly in the
application.<P>

<PRE>
#ifndef WWWHTML_H
#define WWWHTML_H
</PRE>

<PRE>
#ifdef __cplusplus
extern "C" { 
#endif
</PRE>

<H2>System dependencies</H2>

The <A HREF="sysdep.html">sysdep.h</A> file includes system-specific include
files and flags for I/O to network and disk. The only reason for this
file is that the Internet world is more complicated than Posix and
ANSI.

<PRE>
#include "sysdep.h"
</PRE>

<H2>Library Includes</H2>

<PRE>
#include "HTMLPDTD.h"
#include "SGML.h"
#include "HTMLGen.h"
#include "HTTeXGen.h"
</PRE>

End of HTML module

<PRE>
#ifdef __cplusplus
} /* end extern C definitions */
#endif

#endif
</PRE>

<HR>
<ADDRESS>
@(#) $Id: WWWHTML.html,v 2.6 1997/02/16 18:43:24 frystyk Exp $
</ADDRESS>
</BODY>
</HTML>

Webmaster