home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / include / mysql_version.h < prev    next >
C/C++ Source or Header  |  2000-11-21  |  557b  |  21 lines

  1. /* Copyright Abandoned 1996,1999 TCX DataKonsult AB & Monty Program KB & Detron HB
  2.    This file is public domain and comes with NO WARRANTY of any kind */
  3.  
  4. /* Version numbers for protocol & mysqld */
  5.  
  6. #ifdef _CUSTOMCONFIG_
  7.     #include <custom_conf.h>
  8. #else
  9. #define PROTOCOL_VERSION        10
  10. #define MYSQL_SERVER_VERSION        "3.23.28-gamma"
  11. #define FRM_VER                6
  12. #define MYSQL_VERSION_ID        32328
  13. #define MYSQL_PORT            3306
  14. #define MYSQL_UNIX_ADDR            "/tmp/mysql.sock"
  15.  
  16. /* mysqld compile time options */
  17. #ifndef MYSQL_CHARSET
  18. #define MYSQL_CHARSET            "latin1"
  19. #endif
  20. #endif
  21.