summaryrefslogtreecommitdiff
path: root/main/internal_functions_registry.h
diff options
context:
space:
mode:
Diffstat (limited to 'main/internal_functions_registry.h')
-rw-r--r--main/internal_functions_registry.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/main/internal_functions_registry.h b/main/internal_functions_registry.h
index b7d2a16129..8329a95914 100644
--- a/main/internal_functions_registry.h
+++ b/main/internal_functions_registry.h
@@ -23,18 +23,18 @@
#ifndef _INTERNAL_FUNCTIONS_REGISTRY_H
#define _INTERNAL_FUNCTIONS_REGISTRY_H
-extern int php3_init_mime(INIT_FUNC_ARGS);
+extern int php_init_mime(INIT_FUNC_ARGS);
#if APACHE
-extern php3_module_entry apache_module_entry;
+extern zend_module_entry apache_module_entry;
#define phpext_apache_ptr &apache_module_entry
-extern void php3_virtual(INTERNAL_FUNCTION_PARAMETERS);
+extern void php_virtual(INTERNAL_FUNCTION_PARAMETERS);
#else
#define phpext_apache_ptr NULL
#endif
/* environment functions */
-extern int php3_init_environment(void);
+extern int php_init_environment(void);
#endif