From 96150967b3142d067595517d471835f371d353ae Mon Sep 17 00:00:00 2001 From: Marcus Boerger Date: Fri, 16 Dec 2005 23:23:52 +0000 Subject: [PATCH] - Add new const --- Zend/zend_API.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Zend/zend_API.h b/Zend/zend_API.h index c22dd00bd11..92963eece25 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);