Annotation of libwww/Library/src/WWWInit.html, revision 2.1

2.1     ! frystyk     1: <HTML>
        !             2: <HEAD>
        !             3: <TITLE>Non-Mandatory Initialization Module</TITLE>
        !             4: <!-- Changed by: Henrik Frystyk Nielsen,  8-Dec-1995 -->
        !             5: <NEXTID N="z11">
        !             6: </HEAD>
        !             7: <BODY>
        !             8: 
        !             9: <H1>Non-Mandatory Initialization Module</H1>
        !            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: 
        !            18: <PRE>
        !            19: #ifndef WWWINIT_H
        !            20: #define WWWINIT_H
        !            21: </PRE>
        !            22: 
        !            23: The core parts of the Library is a framework for adding
        !            24: functionality. It has hooks for adding protocol modules, like for
        !            25: example HTTP, FTP, and also for adding streams that can convert from
        !            26: one media type to some other type, or presenting the result to the
        !            27: user. In the distribution file of the Library you will find a large
        !            28: set of protocol modules and streams already implemented. However, in
        !            29: order to use these you need to initialize them. This can be done by
        !            30: using the files in the <A HREF="HTInit.html">HTInit</A> module. You
        !            31: can modify this module as you like to fit your particular needs.
        !            32: 
        !            33: <PRE>
        !            34: #ifdef __cplusplus
        !            35: extern "C" { 
        !            36: #endif
        !            37: </PRE>
        !            38: 
        !            39: <PRE>
        !            40: #include "<A HREF="HTInit.html">HTInit.h</A>"
        !            41: #include "<A HREF="HTInit.html">HTBInit.h</A>"
        !            42: </PRE>
        !            43: 
        !            44: <PRE>
        !            45: #ifdef __cplusplus
        !            46: } /* end extern C definitions */
        !            47: #endif
        !            48: 
        !            49: #endif
        !            50: </PRE>
        !            51: 
        !            52: End of WWWINIT declaration
        !            53: 
        !            54: </BODY>
        !            55: </HTML>

Webmaster