1 /*
2 
3 
4 
5   					W3C Sample Code Library libwww Basic libwww Interface
6 
7 
8 !
9   Basic Libwww Interface
10 !
11 */
12 
13 /*
14 **	(c) COPYRIGHT MIT 1995.
15 **	Please first read the full copyright statement in the file COPYRIGH.
16 */
17 
18 /*
19 
20 This is the basic include files and the core include files necessary in order
21 to use the W3C Sample Code Library. It contains all core specific modules which
22 are required to compile and build the Library. No converter streams or protocol
23 modules are included in this file as they are for the application to set
24 up. The Library has a special include file called
25 WWWApp.h which contains all converters and protocol
26 modules known to the Library. You can include this one if the application
27 is to use all the functionality of the Library.
28 */
29 
30 #ifndef WWWLIB_H
31 #define WWWLIB_H
32 
33 /*
34 */
35 
36 #ifdef __cplusplus
37 extern "C" {
38 #endif
39 
40 /*
41 (
42   System dependencies
43 )
44 
45 The wwwsys.h file includes system-specific include
46 files and flags for I/O to network and disk. The only reason for this file
47 is that the Internet world is more complicated than Posix and ANSI.
48 */
49 
50 #include "wwwsys.h"
51 
52 /*
53 .
54   General Utilities
55 .
56 
57 The Basic Utility interface is mostly container
58 modules, dynamic strings and other stuff that you can't live without when
59 building applications. The modules are used by the core part of the W3C Sample Code
60 Library but can also be used by the application.
61 */
62 #include "WWWUtil.h"
63 
64 /*
65 .
66   Core Modules
67 .
68 
69 This is the basic include file for the core of the W3C Sample Code Library.
70 The core part of the Library is designed as a set of registration modules
71 with no real functionality in itself. Instead all the functionality comes
72 when the application registeres the modules that provides a desired functionaly,
73 for example accessing HTTP servers or the local file system.
74 */
75 #include "WWWCore.h"
76 
77 /*
78 */
79 
80 #ifdef __cplusplus
81 } /* end extern C definitions */
82 #endif
83 
84 #endif
85 
86 /*
87 
88 
89 
90   @(#) $Id$
91 
92 */
93