summaryrefslogtreecommitdiff
path: root/main.h
diff options
context:
space:
mode:
authorSam Ruby <rubys@php.net>1999-12-07 20:49:01 +0000
committerSam Ruby <rubys@php.net>1999-12-07 20:49:01 +0000
commit8abf7246780903b2b3084948dbe83e3b967d84bb (patch)
treea5e1168d097a3fb52b9e77b2f90e9fc2242aa28f /main.h
parent6068b5bdacc76296299ea9a3c9fa63049780d961 (diff)
downloadphp-git-8abf7246780903b2b3084948dbe83e3b967d84bb.tar.gz
Provide basis for shared libraries/dlls to contain internal extensions
Diffstat (limited to 'main.h')
-rw-r--r--main.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/main.h b/main.h
index c06954d2c9..e476f490dd 100644
--- a/main.h
+++ b/main.h
@@ -36,6 +36,10 @@ PHPAPI void php_module_shutdown(void);
PHPAPI void php_module_shutdown_for_exec(void);
PHPAPI int php_module_shutdown_wrapper(sapi_module_struct *sapi_globals);
+PHPAPI int php_startup_extensions(zend_module_entry **ptr, int count);
+PHPAPI int php_global_startup_extensions(zend_module_entry **ptr, int count);
+PHPAPI int php_global_shutdown_extensions(zend_module_entry **ptr, int count);
+
PHPAPI void php_execute_script(zend_file_handle *primary_file CLS_DC ELS_DC PLS_DC);
extern void php_call_shutdown_functions(void);