mysql4_version.pp 1009 B

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