diff options
author | Harald Radi <phanto@php.net> | 2002-04-22 14:22:27 +0000 |
---|---|---|
committer | Harald Radi <phanto@php.net> | 2002-04-22 14:22:27 +0000 |
commit | 6ac6cb1040c6ccf1157cf8d8384be1cb074c9281 (patch) | |
tree | 5714c26e375f3c3adaa32ac893552c0f85a970da /Zend/zend_API.h | |
parent | 6c491a565487f2219575f9d55e1cebf4f0b46654 (diff) | |
download | php-git-6ac6cb1040c6ccf1157cf8d8384be1cb074c9281.tar.gz |
added get_class_entry callback handler to the
object handlers structure
Diffstat (limited to 'Zend/zend_API.h')
-rw-r--r-- | Zend/zend_API.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Zend/zend_API.h b/Zend/zend_API.h index c78c2fa1db..be5e8b1861 100644 --- a/Zend/zend_API.h +++ b/Zend/zend_API.h @@ -148,6 +148,8 @@ ZEND_API void zend_wrong_param_count(TSRMLS_D); ZEND_API zend_bool zend_is_callable(zval *callable, zend_bool syntax_only, char **callable_name); ZEND_API char *zend_get_module_version(char *module_name); +ZEND_API zend_class_entry **zend_get_class_entry(zval *zobject); + #define getThis() (this_ptr) #define WRONG_PARAM_COUNT ZEND_WRONG_PARAM_COUNT() |