helly Fri Dec 16 23:23:52 2005 EDT
Modified files:
/ZendEngine2 zend_API.h
Log:
- Add new const
http://cvs.php.net/viewcvs.cgi/ZendEngine2/zend_API.h?r1=1.226&r2=1.227&diff_format=u
Index: ZendEngine2/zend_API.h
diff -u ZendEngine2/zend_API.h:1.226 ZendEngine2/zend_API.h:1.227
--- ZendEngine2/zend_API.h:1.226 Thu Dec 1 11:49:16 2005
+++ ZendEngine2/zend_API.h Fri Dec 16 23:23:52 2005
@@ -18,7 +18,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: zend_API.h,v 1.226 2005/12/01 11:49:16 dmitry Exp $ */
+/* $Id: zend_API.h,v 1.227 2005/12/16 23:23:52 helly Exp $ */
#ifndef ZEND_API_H
#define ZEND_API_H
@@ -210,6 +210,8 @@
#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);
--
Zend Engine CVS Mailing List (http://cvs.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
|