summaryrefslogtreecommitdiff
path: root/ext/pdo/php_pdo_int.h
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2005-03-21 00:29:06 +0000
committerMarcus Boerger <helly@php.net>2005-03-21 00:29:06 +0000
commitc9108bba25ca634df2c9c06b11639baf8c24f0df (patch)
tree252d69c80602673e1c9731d34d19bd4610915eea /ext/pdo/php_pdo_int.h
parent29b4277e2dbe849926070171d9459087c3372227 (diff)
downloadphp-git-c9108bba25ca634df2c9c06b11639baf8c24f0df.tar.gz
- Simplify code (only implement handlers that are necessary)
- Fix handling of read only property 'queryString' - Fix overloading - Move class init code to their defining .c files for simplification - Mark class PDORow as final until there's a need to inherit this and someone implements the handlers correct then.
Diffstat (limited to 'ext/pdo/php_pdo_int.h')
-rwxr-xr-xext/pdo/php_pdo_int.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/pdo/php_pdo_int.h b/ext/pdo/php_pdo_int.h
index 41b3f1ccf1..82ccf3826f 100755
--- a/ext/pdo/php_pdo_int.h
+++ b/ext/pdo/php_pdo_int.h
@@ -25,6 +25,9 @@
extern zend_class_entry *pdo_exception_ce;
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 function_entry pdo_dbh_functions[];
extern zend_class_entry *pdo_dbh_ce;