File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -744,14 +744,14 @@ static int module_startup = 1;
744
744
static int module_shutdown = 0 ;
745
745
746
746
/* {{{ php_during_module_startup */
747
- static int php_during_module_startup (void )
747
+ PHPAPI int php_during_module_startup (void )
748
748
{
749
749
return module_startup ;
750
750
}
751
751
/* }}} */
752
752
753
753
/* {{{ php_during_module_shutdown */
754
- static int php_during_module_shutdown (void )
754
+ PHPAPI int php_during_module_shutdown (void )
755
755
{
756
756
return module_shutdown ;
757
757
}
Original file line number Diff line number Diff line change @@ -311,6 +311,8 @@ void phperror(char *error);
311
311
PHPAPI size_t php_write (void * buf , size_t size );
312
312
PHPAPI size_t php_printf (const char * format , ...) PHP_ATTRIBUTE_FORMAT (printf , 1 , 2 );
313
313
PHPAPI size_t php_printf_unchecked (const char * format , ...);
314
+ PHPAPI int php_during_module_startup (void );
315
+ PHPAPI int php_during_module_shutdown (void );
314
316
PHPAPI int php_get_module_initialized (void );
315
317
#ifdef HAVE_SYSLOG_H
316
318
#include "php_syslog.h"
You can’t perform that action at this time.
0 commit comments