diff options
author | foobar <sniper@php.net> | 2005-12-06 02:00:14 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2005-12-06 02:00:14 +0000 |
commit | a4295629b81d839bda6decb451f205c791f7194f (patch) | |
tree | 66c7127a124c6fe1722dbe22758c2b8b8aacab6c /ext/spl/spl_functions.h | |
parent | 06b36f7cea4be182f426f6c240e3adfb2e973f46 (diff) | |
download | php-git-a4295629b81d839bda6decb451f205c791f7194f.tar.gz |
MFH
Diffstat (limited to 'ext/spl/spl_functions.h')
-rwxr-xr-x | ext/spl/spl_functions.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/spl/spl_functions.h b/ext/spl/spl_functions.h index 798456023f..325d71b6cf 100755 --- a/ext/spl/spl_functions.h +++ b/ext/spl/spl_functions.h @@ -57,13 +57,13 @@ typedef zend_object_value (*create_object_func_t)(zend_class_entry *class_type T void spl_destroy_class(zend_class_entry ** ppce); -void spl_register_std_class(zend_class_entry ** ppce, char * class_name, create_object_func_t ctor, function_entry * function_list TSRMLS_DC); -void spl_register_sub_class(zend_class_entry ** ppce, zend_class_entry * parent_ce, char * class_name, create_object_func_t ctor, function_entry * function_list TSRMLS_DC); +void spl_register_std_class(zend_class_entry ** ppce, char * class_name, create_object_func_t ctor, zend_function_entry * function_list TSRMLS_DC); +void spl_register_sub_class(zend_class_entry ** ppce, zend_class_entry * parent_ce, char * class_name, create_object_func_t ctor, zend_function_entry * function_list TSRMLS_DC); void spl_register_interface(zend_class_entry ** ppce, char * class_name, zend_function_entry *functions TSRMLS_DC); void spl_register_parent_ce(zend_class_entry * class_entry, zend_class_entry * parent_class TSRMLS_DC); -void spl_register_functions(zend_class_entry * class_entry, function_entry * function_list TSRMLS_DC); +void spl_register_functions(zend_class_entry * class_entry, zend_function_entry * function_list TSRMLS_DC); void spl_register_property( zend_class_entry * class_entry, char *prop_name, zval *prop_val, int prop_flags TSRMLS_DC); /* sub: whether to allow subclasses/interfaces |