diff options
author | Xinchen Hui <laruence@gmail.com> | 2014-04-16 17:28:11 +0800 |
---|---|---|
committer | Xinchen Hui <laruence@gmail.com> | 2014-04-16 17:28:11 +0800 |
commit | a16a6eae2400ca27900507a44801645a4b6b3927 (patch) | |
tree | 17277ae784539de74ca44a1c103e9d120c6210da /ext/pdo/php_pdo_int.h | |
parent | dce95c064f7c8cc29e7ec55e29346256fbd240d9 (diff) | |
download | php-git-a16a6eae2400ca27900507a44801645a4b6b3927.tar.gz |
Refactor PDO (incompleted)
Diffstat (limited to 'ext/pdo/php_pdo_int.h')
-rw-r--r-- | ext/pdo/php_pdo_int.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/pdo/php_pdo_int.h b/ext/pdo/php_pdo_int.h index e1868644a3..d25f5c3ba4 100644 --- a/ext/pdo/php_pdo_int.h +++ b/ext/pdo/php_pdo_int.h @@ -33,12 +33,12 @@ int php_pdo_list_entry(void); void pdo_dbh_init(TSRMLS_D); void pdo_stmt_init(TSRMLS_D); -extern zend_object_value pdo_dbh_new(zend_class_entry *ce TSRMLS_DC); +extern zend_object *pdo_dbh_new(zend_class_entry *ce TSRMLS_DC); extern const zend_function_entry pdo_dbh_functions[]; extern zend_class_entry *pdo_dbh_ce; extern ZEND_RSRC_DTOR_FUNC(php_pdo_pdbh_dtor); -extern zend_object_value pdo_dbstmt_new(zend_class_entry *ce TSRMLS_DC); +extern zend_object *pdo_dbstmt_new(zend_class_entry *ce TSRMLS_DC); extern const zend_function_entry pdo_dbstmt_functions[]; extern zend_class_entry *pdo_dbstmt_ce; void pdo_dbstmt_free_storage(pdo_stmt_t *stmt TSRMLS_DC); @@ -47,7 +47,7 @@ extern zend_object_handlers pdo_dbstmt_object_handlers; int pdo_stmt_describe_columns(pdo_stmt_t *stmt TSRMLS_DC); int pdo_stmt_setup_fetch_mode(INTERNAL_FUNCTION_PARAMETERS, pdo_stmt_t *stmt, int skip_first_arg); -extern zend_object_value pdo_row_new(zend_class_entry *ce TSRMLS_DC); +extern zend_object *pdo_row_new(zend_class_entry *ce TSRMLS_DC); extern const zend_function_entry pdo_row_functions[]; extern zend_class_entry *pdo_row_ce; void pdo_row_free_storage(pdo_stmt_t *stmt TSRMLS_DC); |