gwlib.h
上传用户:gzpyjq
上传日期:2013-01-31
资源大小:1852k
文件大小:1k
源码类别:

手机WAP编程

开发平台:

WINDOWS

  1. /*
  2.  * gwlib.h - public interface to gwlib
  3.  *
  4.  * This is general header file to include all gwlib subparts.
  5.  * As they are usually all needed, this eases the need of
  6.  * lots of includes in modules
  7.  *
  8.  * Kalle Marjola for WapIT Ltd 1999
  9.  */
  10. #ifndef GWLIB_H
  11. #define GWLIB_H
  12. #include <stdlib.h>
  13. #include <stddef.h>
  14. #include <string.h>
  15. #include "config.h"
  16. #include "gw-getopt.h"
  17. #include "gwpoll.h"
  18. #include "utils.h"
  19. #include "log.h"
  20. #include "thread.h"
  21. #include "gwthread.h"
  22. #include "gwmem.h"
  23. #include "socket.h"
  24. #include "cfg.h"
  25. #include "date.h"
  26. #include "http.h"
  27. #include "octstr.h"
  28. #include "list.h"
  29. #include "fdset.h"
  30. #include "gwassert.h"
  31. #include "counter.h"
  32. #include "charset.h"
  33. #include "conn.h"
  34. #include "ssl.h"
  35. #include "parse.h"
  36. #include "protected.h"
  37. #include "accesslog.h"
  38. #include "dict.h"
  39. #include "semaphore.h"
  40. #include "xmlrpc.h"
  41. void gwlib_assert_init(void);
  42. void gwlib_init(void);
  43. void gwlib_shutdown(void);
  44. #ifdef NO_GWASSERT
  45. #define gwlib_assert_init() ((void) 0)
  46. #endif
  47. #endif