summaryrefslogtreecommitdiff
path: root/Zend/zend_API.h
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2003-08-24 00:36:53 +0000
committerMarcus Boerger <helly@php.net>2003-08-24 00:36:53 +0000
commit38805f28098dcf7f27588c605eaba214ab044031 (patch)
tree8564b01c5a87892bee45f42316cd959182e24e5c /Zend/zend_API.h
parentb8799ff085b57288cabe49ddee7e1fe76a6eb8bb (diff)
downloadphp-git-38805f28098dcf7f27588c605eaba214ab044031.tar.gz
Add property read code and use that in default exception class
Diffstat (limited to 'Zend/zend_API.h')
-rw-r--r--Zend/zend_API.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Zend/zend_API.h b/Zend/zend_API.h
index 7e4ef3ad5b..02e0714311 100644
--- a/Zend/zend_API.h
+++ b/Zend/zend_API.h
@@ -172,6 +172,8 @@ ZEND_API void zend_update_property_null(zend_class_entry *scope, zval *object, c
ZEND_API void zend_update_property_long(zend_class_entry *scope, zval *object, char *name, int name_length, long value TSRMLS_DC);
ZEND_API void zend_update_property_string(zend_class_entry *scope, zval *object, char *name, int name_length, char *value TSRMLS_DC);
+ZEND_API zval *zend_read_property(zend_class_entry *scope, zval *object, char *name, int name_length, zend_bool silent TSRMLS_DC);
+
ZEND_API zend_class_entry *zend_get_class_entry(zval *zobject TSRMLS_DC);
#define getThis() (this_ptr)