summaryrefslogtreecommitdiff
path: root/ext/spl/spl_functions.h
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2003-08-04 23:00:57 +0000
committerMarcus Boerger <helly@php.net>2003-08-04 23:00:57 +0000
commit28dd8fcff288953bdde9b72731479b7fcb6902d2 (patch)
treedec1b426dc6f873a0e76dea5445fc04e8abb52fa /ext/spl/spl_functions.h
parentb099670127063fd67c3d7f808e5d44f3cfb02716 (diff)
downloadphp-git-28dd8fcff288953bdde9b72731479b7fcb6902d2.tar.gz
Update documentation in source, reflection and docu itself
Diffstat (limited to 'ext/spl/spl_functions.h')
-rwxr-xr-xext/spl/spl_functions.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/spl/spl_functions.h b/ext/spl/spl_functions.h
index 3eddbe0d84..215345d594 100755
--- a/ext/spl/spl_functions.h
+++ b/ext/spl/spl_functions.h
@@ -59,8 +59,8 @@ void spl_add_class_name(zval * list, zend_class_entry * pce TSRMLS_DC);
void spl_add_interfaces(zval * list, zend_class_entry * pce TSRMLS_DC);
int spl_add_classes(zend_class_entry ** ppce, zval *list TSRMLS_DC);
-#define SPL_CLASS_FE(class_name, function_name, arg_types) \
- PHP_NAMED_FE( function_name, spl_ ## class_name ## _ ## function_name, arg_types)
+#define SPL_CLASS_FE(class_name, function_name, arg_info, flags) \
+ { #function_name, spl_ ## class_name ## _ ## function_name, arg_info, sizeof(arg_info)/sizeof(struct _zend_arg_info)-1, flags },
#define SPL_CLASS_FUNCTION(class_name, function_name) \
PHP_NAMED_FUNCTION(spl_ ## class_name ## _ ## function_name)