WWWLib.h
上传用户:zlh9724
上传日期:2007-01-04
资源大小:1991k
文件大小:1k
源码类别:

浏览器

开发平台:

Unix_Linux

  1. /*                                                     Include file for W3C Reference Library
  2.                           INCLUDE FILE FOR W3C REFERENCE LIBRARY
  3.                                              
  4.  */
  5. /*
  6. **      (c) COPYRIGHT MIT 1995.
  7. **      Please first read the full copyright statement in the file COPYRIGH.
  8. */
  9. /*
  10.    This is the basic include files and the core include files necessary in order to use
  11.    the W3C Reference Library. It contains all core specific modules which are required to
  12.    compile and build the Library. No converter streams or protocol modules are included in
  13.    this file as they are for the application to set up. The Library has a special include
  14.    file called WWWApp.h which contains all converters and protocol modules known to the
  15.    Library. You can include this one if the application is to use all the functionality of
  16.    the Library.
  17.    
  18.  */
  19. #ifndef WWWLIB_H
  20. #define WWWLIB_H
  21. /*
  22.  */
  23. #ifdef __cplusplus
  24. extern "C" {
  25. #endif
  26. /*
  27. General Utilities
  28.  */
  29. #include "WWWUtil.h"                    /* Basic utility modules */
  30. /*
  31. Core Modules
  32.  */
  33. #include "WWWCore.h"                    /* Core modules */
  34. /*
  35.  */
  36. #ifdef __cplusplus
  37. } /* end extern C definitions */
  38. #endif
  39. #endif
  40. /*
  41.    End of WWWLib API definition  */