@@ -234,8 +234,6 @@ SAPI_API double sapi_get_request_time(void);
234234SAPI_API void sapi_terminate_process (void );
235235END_EXTERN_C ()
236236
237- #define SAPI_MODULE_FLAG_ISOLATE_SYMBOLS (1<<0)
238-
239237struct _sapi_module_struct {
240238 char * name ;
241239 char * pretty_name ;
@@ -289,8 +287,6 @@ struct _sapi_module_struct {
289287 const char * ini_entries ;
290288 const zend_function_entry * additional_functions ;
291289 unsigned int (* input_filter_init )(void );
292-
293- unsigned int flags ;
294290};
295291
296292struct _sapi_post_entry {
@@ -325,25 +321,22 @@ SAPI_API SAPI_TREAT_DATA_FUNC(php_default_treat_data);
325321SAPI_API SAPI_INPUT_FILTER_FUNC (php_default_input_filter );
326322END_EXTERN_C ()
327323
328- #define STANDARD_SAPI_MODULE_PROPERTIES STANDARD_SAPI_MODULE_PROPERTIES_WITH_FLAGS(0)
329-
330- #define STANDARD_SAPI_MODULE_PROPERTIES_WITH_FLAGS (_flags ) \
331- NULL, /* php_ini_path_override */ \
332- NULL , /* default_post_reader */ \
333- NULL , /* treat_data */ \
334- NULL , /* executable_location */ \
335- 0 , /* php_ini_ignore */ \
336- 0 , /* php_ini_ignore_cwd */ \
337- NULL , /* get_fd */ \
338- NULL , /* force_http_10 */ \
339- NULL , /* get_target_uid */ \
340- NULL , /* get_target_gid */ \
341- NULL , /* input_filter */ \
342- NULL , /* ini_defaults */ \
343- 0 , /* phpinfo_as_text; */ \
344- NULL , /* ini_entries; */ \
345- NULL , /* additional_functions */ \
346- NULL , /* input_filter_init */ \
347- (_flags ) /* flags */
324+ #define STANDARD_SAPI_MODULE_PROPERTIES \
325+ NULL , /* php_ini_path_override */ \
326+ NULL , /* default_post_reader */ \
327+ NULL , /* treat_data */ \
328+ NULL , /* executable_location */ \
329+ 0 , /* php_ini_ignore */ \
330+ 0 , /* php_ini_ignore_cwd */ \
331+ NULL , /* get_fd */ \
332+ NULL , /* force_http_10 */ \
333+ NULL , /* get_target_uid */ \
334+ NULL , /* get_target_gid */ \
335+ NULL , /* input_filter */ \
336+ NULL , /* ini_defaults */ \
337+ 0 , /* phpinfo_as_text; */ \
338+ NULL , /* ini_entries; */ \
339+ NULL , /* additional_functions */ \
340+ NULL /* input_filter_init */
348341
349342#endif /* SAPI_H */
0 commit comments