mysql4_version.pp 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {$IFNDEF FPC_DOTTEDUNITS}
  2. unit mysql4_version;
  3. {$ENDIF FPC_DOTTEDUNITS}
  4. interface
  5. {
  6. Automatically converted by H2Pas 0.99.15 from mysql_version.ph
  7. The following command line parameters were used:
  8. -p
  9. -D
  10. -l
  11. mysqlclient
  12. mysql_version.ph
  13. }
  14. const
  15. External_library='mysqlclient'; {Setup as you need}
  16. { Pointers to basic pascal types, inserted by h2pas conversion program.}
  17. Type
  18. PLongint = ^Longint;
  19. PSmallInt = ^SmallInt;
  20. PByte = ^Byte;
  21. PWord = ^Word;
  22. PDWord = ^DWord;
  23. PDouble = ^Double;
  24. {$PACKRECORDS C}
  25. { Copyright Abandoned 1996, 1999, 2001 MySQL AB
  26. This file is public domain and comes with NO WARRANTY of any kind }
  27. { Version numbers for protocol & mysqld }
  28. const
  29. PROTOCOL_VERSION = 10;
  30. MYSQL_SERVER_VERSION = '4.1.10a';
  31. MYSQL_SERVER_SUFFIX = '-max';
  32. FRM_VER = 6;
  33. MYSQL_VERSION_ID = 40001;
  34. MYSQL_PORT = 3306;
  35. MYSQL_UNIX_ADDR = '/tmp/mysql.sock';
  36. { mysqld compile time options }
  37. MYSQL_CHARSET = 'latin1';
  38. implementation
  39. end.