diff options
author | Dmitry Stogov <dmitry@php.net> | 2005-07-18 16:20:08 +0000 |
---|---|---|
committer | Dmitry Stogov <dmitry@php.net> | 2005-07-18 16:20:08 +0000 |
commit | 70bd938bbdc264f94d6b480ae535636a241b5e3c (patch) | |
tree | 5792b3a644406d170543ac43e604c1a87c68f454 /Zend/zend_API.h | |
parent | e63d1706cfe5fc572ea99df499ee11875034259b (diff) | |
download | php-git-70bd938bbdc264f94d6b480ae535636a241b5e3c.tar.gz |
Fixed bug in new module statrup mechanism
Diffstat (limited to 'Zend/zend_API.h')
-rw-r--r-- | Zend/zend_API.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_API.h b/Zend/zend_API.h index d8833a237c..e28fa1b7c6 100644 --- a/Zend/zend_API.h +++ b/Zend/zend_API.h @@ -178,8 +178,8 @@ 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_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 zend_module_entry* zend_register_internal_module(zend_module_entry *module_entry TSRMLS_DC); +ZEND_API zend_module_entry* zend_register_module_ex(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); |