]> granicus.if.org Git - php/commitdiff
dll export APIs needed by phpdbg
authorAnatol Belski <ab@php.net>
Wed, 29 Oct 2014 18:32:52 +0000 (19:32 +0100)
committerAnatol Belski <ab@php.net>
Wed, 29 Oct 2014 18:32:52 +0000 (19:32 +0100)
ext/standard/basic_functions.c
ext/standard/basic_functions.h
main/php_main.h

index ca14b28ccd22b47fa5a4bdff069c11ec5793ba70..c5392760e826b124e029ac21b3cbe160a1b8dcae 100644 (file)
@@ -5051,7 +5051,7 @@ static int user_tick_function_compare(user_tick_function_entry * tick_fe1, user_
 }
 /* }}} */
 
-void php_call_shutdown_functions(TSRMLS_D) /* {{{ */
+PHPAPI void php_call_shutdown_functions(TSRMLS_D) /* {{{ */
 {
        if (BG(user_shutdown_function_names)) {
                zend_try {
@@ -5063,7 +5063,7 @@ void php_call_shutdown_functions(TSRMLS_D) /* {{{ */
 }
 /* }}} */
 
-void php_free_shutdown_functions(TSRMLS_D) /* {{{ */
+PHPAPI void php_free_shutdown_functions(TSRMLS_D) /* {{{ */
 {
        if (BG(user_shutdown_function_names))
                zend_try {
index 3af85b3d403bbfed53e29b1b1dac7349aba386c5..eaeb9bca8398934da911a75aacef60adb147e95c 100644 (file)
@@ -261,4 +261,8 @@ PHPAPI extern zend_bool register_user_shutdown_function(char *function_name, siz
 PHPAPI extern zend_bool remove_user_shutdown_function(char *function_name, size_t function_len TSRMLS_DC);
 PHPAPI extern zend_bool append_user_shutdown_function(php_shutdown_function_entry shutdown_function_entry TSRMLS_DC);
 
+PHPAPI void php_call_shutdown_functions(TSRMLS_D);
+PHPAPI void php_free_shutdown_functions(TSRMLS_D);
+
+
 #endif /* BASIC_FUNCTIONS_H */
index 1325486bd9760fcccc50b8840ecd895bae373f89..03c89c5d6f28951dedf0079ef74f4b8648c344dc 100644 (file)
@@ -50,9 +50,6 @@ PHPAPI int php_handle_auth_data(const char *auth TSRMLS_DC);
 PHPAPI void php_html_puts(const char *str, uint siz TSRMLS_DC);
 PHPAPI int php_stream_open_for_zend_ex(const char *filename, zend_file_handle *handle, int mode TSRMLS_DC);
 
-extern void php_call_shutdown_functions(TSRMLS_D);
-extern void php_free_shutdown_functions(TSRMLS_D);
-
 /* environment module */
 extern int php_init_environ(void);
 extern int php_shutdown_environ(void);