1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- #ifndef PHP_PDO_OCI_H
- #define PHP_PDO_OCI_H
- extern zend_module_entry pdo_oci_module_entry;
- #define phpext_pdo_oci_ptr &pdo_oci_module_entry
- #ifdef ZTS
- #include "TSRM.h"
- #endif
- PHP_MINIT_FUNCTION(pdo_oci);
- PHP_MSHUTDOWN_FUNCTION(pdo_oci);
- PHP_RINIT_FUNCTION(pdo_oci);
- PHP_RSHUTDOWN_FUNCTION(pdo_oci);
- PHP_MINFO_FUNCTION(pdo_oci);
- #endif
|