diff options
author | Dmitry Stogov <dmitry@zend.com> | 2016-06-21 17:56:07 +0300 |
---|---|---|
committer | Dmitry Stogov <dmitry@zend.com> | 2016-06-21 17:56:07 +0300 |
commit | 22ecd4428a74a0e9d535f984072d363da39cb052 (patch) | |
tree | fcea2c79213759b45f8aee4118c6a45b8a8868bf /main/SAPI.h | |
parent | 307e6b7ac99197aae9917ceeccdb89d7db324f4a (diff) | |
download | php-git-22ecd4428a74a0e9d535f984072d363da39cb052.tar.gz |
Fixed compilation warnings
Diffstat (limited to 'main/SAPI.h')
-rw-r--r-- | main/SAPI.h | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/main/SAPI.h b/main/SAPI.h index d9163729a5..d52835b7b1 100644 --- a/main/SAPI.h +++ b/main/SAPI.h @@ -272,7 +272,6 @@ struct _sapi_module_struct { unsigned int (*input_filter_init)(void); }; - struct _sapi_post_entry { char *content_type; uint content_type_len; @@ -305,7 +304,23 @@ SAPI_API SAPI_TREAT_DATA_FUNC(php_default_treat_data); SAPI_API SAPI_INPUT_FILTER_FUNC(php_default_input_filter); END_EXTERN_C() -#define STANDARD_SAPI_MODULE_PROPERTIES +#define STANDARD_SAPI_MODULE_PROPERTIES \ + NULL, /* php_ini_path_override */ \ + NULL, /* default_post_reader */ \ + NULL, /* treat_data */ \ + NULL, /* executable_location */ \ + 0, /* php_ini_ignore */ \ + 0, /* php_ini_ignore_cwd */ \ + NULL, /* get_fd */ \ + NULL, /* force_http_10 */ \ + NULL, /* get_target_uid */ \ + NULL, /* get_target_gid */ \ + NULL, /* input_filter */ \ + NULL, /* ini_defaults */ \ + 0, /* phpinfo_as_text; */ \ + NULL, /* ini_entries; */ \ + NULL, /* additional_functions */ \ + NULL /* input_filter_init */ #endif /* SAPI_H */ |