Annotation of libwww/Library/src/WWWGophe.html, revision 2.6

2.1       frystyk     1: <HTML>
                      2: <HEAD>
2.5       frystyk     3: <TITLE>W3C Sample Code Library libwww GOPHER CLIENT</TITLE>
2.4       frystyk     4: <!-- Changed by: Henrik Frystyk Nielsen, 16-Apr-1996 -->
2.1       frystyk     5: <NEXTID N="z11">
                      6: </HEAD>
                      7: <BODY>
                      8: 
2.5       frystyk     9: <H1>Declaration of W3C Sample Code GOPHER 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: 
                     18: This is the include file for the basic GOPHER module that can be used
2.5       frystyk    19: together with the core of the W3C Sample Code Library. It contains all
2.1       frystyk    20: GOPHER specific modules which are required to compile and build the
                     21: GOPHER DLL.<P>
                     22: 
                     23: <PRE>
                     24: #ifndef WWWGOPHER_H
                     25: #define WWWGOPHER_H
                     26: </PRE>
                     27: 
                     28: <PRE>
                     29: #ifdef __cplusplus
                     30: extern "C" { 
                     31: #endif
                     32: </PRE>
                     33: 
2.4       frystyk    34: <H2>System dependencies</H2>
                     35: 
2.6     ! frystyk    36: The <A HREF="wwwsys.html">wwwsys.h</A> file includes system-specific include
2.4       frystyk    37: files and flags for I/O to network and disk. The only reason for this
                     38: file is that the Internet world is more complicated than Posix and
                     39: ANSI.
                     40: 
2.1       frystyk    41: <PRE>
2.6     ! frystyk    42: #include "wwwsys.h"
2.4       frystyk    43: </PRE>
                     44: 
                     45: <H2>Library Includes</H2>
                     46: 
                     47: 
                     48: <PRE>
2.1       frystyk    49: #include "HTGopher.h"                        /* GOPHER client state machine */
                     50: </PRE>
                     51: 
                     52: End of GOPHER module
                     53: 
                     54: <PRE>
                     55: #ifdef __cplusplus
                     56: } /* end extern C definitions */
                     57: #endif
                     58: 
                     59: #endif
                     60: </PRE>
                     61: 
2.3       frystyk    62: <HR>
                     63: <ADDRESS>
2.6     ! frystyk    64: @(#) $Id: WWWGophe.html,v 2.5 1997/02/16 18:43:23 frystyk Exp $
2.3       frystyk    65: </ADDRESS>
2.1       frystyk    66: </BODY>
                     67: </HTML>

Webmaster