mysql_version.h
上传用户:jxpjxmjjw
上传日期:2009-12-07
资源大小:5877k
文件大小:1k
源码类别:

模拟服务器

开发平台:

Visual C++

  1. /* Copyright Abandoned 1996, 1999, 2001 MySQL AB
  2.    This file is public domain and comes with NO WARRANTY of any kind */
  3. /* Version numbers for protocol & mysqld */
  4. #ifndef _mysql_version_h
  5. #define _mysql_version_h
  6. #ifdef _CUSTOMCONFIG_
  7. #include <custom_conf.h>
  8. #else
  9. #define PROTOCOL_VERSION 10
  10. #define MYSQL_SERVER_VERSION "4.0.18"
  11. #define MYSQL_BASE_VERSION "mysqld-4.0"
  12. #ifndef MYSQL_SERVER_SUFFIX
  13. #define MYSQL_SERVER_SUFFIX ""
  14. #endif
  15. #define FRM_VER 6
  16. #define MYSQL_VERSION_ID 40018
  17. #define MYSQL_PORT 3306
  18. #define MYSQL_UNIX_ADDR "/tmp/mysql.sock"
  19. #define MYSQL_CONFIG_NAME "my"
  20. #define MYSQL_COMPILATION_COMMENT "Source distribution"
  21. /* mysqld compile time options */
  22. #ifndef MYSQL_CHARSET
  23. #define MYSQL_CHARSET "latin1"
  24. #endif /* MYSQL_CHARSET */
  25. #endif /* _CUSTOMCONFIG_ */
  26. #endif /* _mysql_version_h */