mysql_version.h
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

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.1.16"
  11. #define MYSQL_BASE_VERSION "mysqld-4.1"
  12. #define MYSQL_SERVER_SUFFIX_DEF ""
  13. #define FRM_VER 6
  14. #define MYSQL_VERSION_ID 40116
  15. #define MYSQL_PORT 3306
  16. #define MYSQL_UNIX_ADDR "/tmp/mysql.sock"
  17. #define MYSQL_CONFIG_NAME "my"
  18. #define MYSQL_COMPILATION_COMMENT "Source distribution"
  19. /* mysqld compile time options */
  20. #endif /* _CUSTOMCONFIG_ */
  21. #ifndef LICENSE
  22. #define LICENSE GPL
  23. #endif /* LICENSE */
  24. #endif /* _mysql_version_h */