WWWInit.h
Upload User: zlh9724
Upload Date: 2007-01-04
Package Size: 1991k
Code Size: 1k
Category:

Browser Client

Development Platform:

Unix_Linux

  1. /*                                                        Non-Mandatory Initialization Module
  2.                            NON-MANDATORY INITIALIZATION MODULE
  3.                                              
  4.  */
  5. /*
  6. **      (c) COPYRIGHT MIT 1995.
  7. **      Please first read the full copyright statement in the file COPYRIGH.
  8. */
  9. /*
  10.  */
  11. #ifndef WWWINIT_H
  12. #define WWWINIT_H
  13. /*
  14.    The core parts of the Library is a framework for adding functionality. It has hooks for
  15.    adding protocol modules, like for example HTTP, FTP, and also for adding streams that
  16.    can convert from one media type to some other type, or presenting the result to the
  17.    user. In the distribution file of the Library you will find a large set of protocol
  18.    modules and streams already implemented. However, in order to use these you need to
  19.    initialize them. This can be done by using the files in the HTInit module. You can
  20.    modify this module as you like to fit your particular needs.
  21.    
  22.  */
  23. #ifdef __cplusplus
  24. extern "C" {
  25. #endif
  26. /*
  27.  */
  28. #include "HTInit.h"
  29. #include "HTBInit.h"
  30. /*
  31.  */
  32. #ifdef __cplusplus
  33. } /* end extern C definitions */
  34. #endif
  35. #endif
  36. /*
  37.    End of WWWINIT declaration  */