diff options
author | Dmitry Stogov <dmitry@php.net> | 2005-06-17 09:39:23 +0000 |
---|---|---|
committer | Dmitry Stogov <dmitry@php.net> | 2005-06-17 09:39:23 +0000 |
commit | f47c78487bda814ccb1de09fe44fe9a6b4082c30 (patch) | |
tree | b6abddf041fb917f5545741ea8928be9ebb66985 /main/php_main.h | |
parent | c0c7a9f0101f5488cbf861390f5a89feaebcc94a (diff) | |
download | php-git-f47c78487bda814ccb1de09fe44fe9a6b4082c30.tar.gz |
Improved PHP extension loading mechanism with support for module dependencies and conflicts
Diffstat (limited to 'main/php_main.h')
-rw-r--r-- | main/php_main.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/php_main.h b/main/php_main.h index 883953643f..e22ffd6ef3 100644 --- a/main/php_main.h +++ b/main/php_main.h @@ -36,7 +36,7 @@ PHPAPI void php_module_shutdown_for_exec(void); PHPAPI int php_module_shutdown_wrapper(sapi_module_struct *sapi_globals); PHPAPI int php_request_startup_for_hook(TSRMLS_D); -PHPAPI int php_startup_extensions(zend_module_entry **ptr, int count); +PHPAPI int php_register_extensions(zend_module_entry **ptr, int count TSRMLS_DC); PHPAPI int php_execute_script(zend_file_handle *primary_file TSRMLS_DC); PHPAPI int php_execute_simple_script(zend_file_handle *primary_file, zval **ret TSRMLS_DC); |