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 {
77
77
const struct _zend_module_dep * deps ;
78
78
const char * name ;
79
79
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 );
84
84
void (* info_func )(ZEND_MODULE_INFO_FUNC_ARGS );
85
85
const char * version ;
86
86
size_t globals_size ;
You can’t perform that action at this time.
0 commit comments