diff options
| author | Marcus Boerger <helly@php.net> | 2005-12-16 23:23:52 +0000 |
|---|---|---|
| committer | Marcus Boerger <helly@php.net> | 2005-12-16 23:23:52 +0000 |
| commit | 96150967b3142d067595517d471835f371d353ae (patch) | |
| tree | 09a495494ec5b993b10d6303e443f79419dfc264 | |
| parent | 25052ff3afb4ab704935c7a9da14a44fc090d31e (diff) | |
| download | php-git-96150967b3142d067595517d471835f371d353ae.tar.gz | |
- Add new const
| -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 c22dd00bd1..92963eece2 100644 --- a/Zend/zend_API.h +++ b/Zend/zend_API.h @@ -210,6 +210,8 @@ ZEND_API void zend_wrong_param_count(TSRMLS_D); #define IS_CALLABLE_CHECK_NO_ACCESS (1<<1) #define IS_CALLABLE_CHECK_IS_STATIC (1<<2) +#define IS_CALLABLE_STRICT (IS_CALLABLE_CHECK_IS_STATIC) + ZEND_API zend_bool zend_is_callable_ex(zval *callable, uint check_flags, zval *callable_name, zend_class_entry **ce_ptr, zend_function **fptr_ptr, zval ***zobj_ptr_ptr TSRMLS_DC); ZEND_API zend_bool zend_is_callable(zval *callable, uint check_flags, zval *callable_name); ZEND_API zend_bool zend_make_callable(zval *callable, zval *callable_name TSRMLS_DC); |
