php_pdo.h 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 7 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2018 The PHP Group |
  6. +----------------------------------------------------------------------+
  7. | This source file is subject to version 3.01 of the PHP license, |
  8. | that is bundled with this package in the file LICENSE, and is |
  9. | available through the world-wide-web at the following url: |
  10. | http://www.php.net/license/3_01.txt |
  11. | If you did not receive a copy of the PHP license and are unable to |
  12. | obtain it through the world-wide-web, please send a note to |
  13. | license@php.net so we can mail you a copy immediately. |
  14. +----------------------------------------------------------------------+
  15. | Author: Wez Furlong <wez@php.net> |
  16. +----------------------------------------------------------------------+
  17. */
  18. #ifndef PHP_PDO_H
  19. #define PHP_PDO_H
  20. #include "zend.h"
  21. extern zend_module_entry pdo_module_entry;
  22. #define phpext_pdo_ptr &pdo_module_entry
  23. #include "php_version.h"
  24. #define PHP_PDO_VERSION PHP_VERSION
  25. #ifdef PHP_WIN32
  26. # if defined(PDO_EXPORTS) || (!defined(COMPILE_DL_PDO))
  27. # define PDO_API __declspec(dllexport)
  28. # elif defined(COMPILE_DL_PDO)
  29. # define PDO_API __declspec(dllimport)
  30. # else
  31. # define PDO_API /* nothing special */
  32. # endif
  33. #elif defined(__GNUC__) && __GNUC__ >= 4
  34. # define PDO_API __attribute__ ((visibility("default")))
  35. #else
  36. # define PDO_API /* nothing special */
  37. #endif
  38. #ifdef ZTS
  39. # include "TSRM.h"
  40. #endif
  41. PHP_MINIT_FUNCTION(pdo);
  42. PHP_MSHUTDOWN_FUNCTION(pdo);
  43. PHP_MINFO_FUNCTION(pdo);
  44. ZEND_BEGIN_MODULE_GLOBALS(pdo)
  45. zend_long global_value;
  46. ZEND_END_MODULE_GLOBALS(pdo)
  47. #ifdef ZTS
  48. # define PDOG(v) TSRMG(pdo_globals_id, zend_pdo_globals *, v)
  49. #else
  50. # define PDOG(v) (pdo_globals.v)
  51. #endif
  52. #define REGISTER_PDO_CLASS_CONST_LONG(const_name, value) \
  53. zend_declare_class_constant_long(php_pdo_get_dbh_ce(), const_name, sizeof(const_name)-1, (zend_long)value);
  54. #define REGISTER_PDO_CLASS_CONST_STRING(const_name, value) \
  55. zend_declare_class_constant_stringl(php_pdo_get_dbh_ce(), const_name, sizeof(const_name)-1, value, sizeof(value)-1);
  56. #define PDO_CONSTRUCT_CHECK \
  57. if (!dbh->driver) { \
  58. pdo_raise_impl_error(dbh, NULL, "00000", "PDO constructor was not called"); \
  59. return; \
  60. } \
  61. #endif /* PHP_PDO_H */
  62. /*
  63. * Local variables:
  64. * tab-width: 4
  65. * c-basic-offset: 4
  66. * End:
  67. * vim600: noet sw=4 ts=4 fdm=marker
  68. * vim<600: noet sw=4 ts=4
  69. */