File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -77,10 +77,10 @@ struct _zend_module_entry {
7777 const struct _zend_module_dep * deps ;
7878 const char * name ;
7979 const struct _zend_function_entry * functions ;
80- int (* module_startup_func )(INIT_FUNC_ARGS );
81- int (* module_shutdown_func )(SHUTDOWN_FUNC_ARGS );
82- int (* request_startup_func )(INIT_FUNC_ARGS );
83- int (* request_shutdown_func )(SHUTDOWN_FUNC_ARGS );
80+ ZEND_RESULT_CODE (* module_startup_func )(INIT_FUNC_ARGS );
81+ ZEND_RESULT_CODE (* module_shutdown_func )(SHUTDOWN_FUNC_ARGS );
82+ ZEND_RESULT_CODE (* request_startup_func )(INIT_FUNC_ARGS );
83+ ZEND_RESULT_CODE (* request_shutdown_func )(SHUTDOWN_FUNC_ARGS );
8484 void (* info_func )(ZEND_MODULE_INFO_FUNC_ARGS );
8585 const char * version ;
8686 size_t globals_size ;
You can’t perform that action at this time.
0 commit comments