summaryrefslogtreecommitdiff
path: root/Zend/zend_API.h
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@php.net>2005-06-30 13:43:00 +0000
committerDmitry Stogov <dmitry@php.net>2005-06-30 13:43:00 +0000
commit2ca2dc0b08f4db34233afa0a173446bb3767b95b (patch)
tree2ef9d967dad51eb9183c2077408312835179ef42 /Zend/zend_API.h
parent9518bae116bbee9d25ae6d02fefe9cb025e996af (diff)
downloadphp-git-2ca2dc0b08f4db34233afa0a173446bb3767b95b.tar.gz
Restored old behavior of zend_statup_module()
Diffstat (limited to 'Zend/zend_API.h')
-rw-r--r--Zend/zend_API.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_API.h b/Zend/zend_API.h
index f7f6bcac57..2a967fd602 100644
--- a/Zend/zend_API.h
+++ b/Zend/zend_API.h
@@ -172,10 +172,10 @@ ZEND_API int zend_parse_method_parameters_ex(int flags, int num_args TSRMLS_DC,
ZEND_API int zend_register_functions(zend_class_entry *scope, zend_function_entry *functions, HashTable *function_table, int type TSRMLS_DC);
ZEND_API void zend_unregister_functions(zend_function_entry *functions, int count, HashTable *function_table TSRMLS_DC);
-ZEND_API int zend_register_module(zend_module_entry *module_entry);
+ZEND_API int zend_startup_module(zend_module_entry *module_entry);
ZEND_API int zend_register_internal_module(zend_module_entry *module_entry TSRMLS_DC);
ZEND_API int zend_register_module_ex(zend_module_entry *module TSRMLS_DC);
-ZEND_API int zend_startup_module(zend_module_entry *module TSRMLS_DC);
+ZEND_API int zend_startup_module_ex(zend_module_entry *module TSRMLS_DC);
ZEND_API int zend_startup_modules(TSRMLS_D);
ZEND_API void zend_check_magic_method_implementation(zend_class_entry *ce, zend_function *fptr, int error_type TSRMLS_DC);