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

WEB邮件程序

开发平台:

C/C++

  1. /*
  2. ** $Id: sqconfig.h,v 1.3 1999/12/08 06:00:38 mrsam Exp $
  3. */
  4. #ifndef sqconfig_h
  5. #define sqconfig_h
  6. /*
  7. ** Copyright 1998 - 1999 Double Precision, Inc.  See COPYING for
  8. ** distribution information.
  9. */
  10. #if HAVE_CONFIG_H
  11. #undef PACKAGE
  12. #undef VERSION
  13. #include "config.h"
  14. #endif
  15. #if TIME_WITH_SYS_TIME
  16. #include <sys/time.h>
  17. #include <time.h>
  18. #else
  19. #if HAVE_SYS_TIME_H
  20. #include <sys/time.h>
  21. #else
  22. #include <time.h>
  23. #endif
  24. #endif
  25. extern const char *read_sqconfig(const char *, const char *, time_t *);
  26. extern void write_sqconfig(const char *, const char *, const char *);
  27. #endif