mirror of
https://github.com/php/php-src.git
synced 2024-11-27 03:44:07 +08:00
Fix mismatch between macro and struct definition
This commit is contained in:
parent
9464576f29
commit
7b3ac296a5
@ -309,7 +309,7 @@ PHP 8.0 INTERNALS UPGRADE NOTES
|
||||
- zend_multibyte_set_filter()
|
||||
- zend_lex_tstring()
|
||||
- _zend_module_entry module_startup_func, module_shutdown_func,
|
||||
request_startup_func, and request_shutdown_func function pointers
|
||||
request_startup_func, request_shutdown_func, and post_deactivate_func function pointers
|
||||
- (*zend_encoding_list_parser) typedef
|
||||
- (*zend_encoding_internal_encoding_setter) typedef
|
||||
- zend_multibyte_set_functions()
|
||||
|
@ -91,7 +91,7 @@ struct _zend_module_entry {
|
||||
#endif
|
||||
void (*globals_ctor)(void *global);
|
||||
void (*globals_dtor)(void *global);
|
||||
int (*post_deactivate_func)(void);
|
||||
zend_result (*post_deactivate_func)(void);
|
||||
int module_started;
|
||||
unsigned char type;
|
||||
void *handle;
|
||||
|
Loading…
Reference in New Issue
Block a user