summaryrefslogtreecommitdiff
path: root/Zend/zend_globals.h
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/zend_globals.h')
-rw-r--r--Zend/zend_globals.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/Zend/zend_globals.h b/Zend/zend_globals.h
index 964f61ec2b..f010adf338 100644
--- a/Zend/zend_globals.h
+++ b/Zend/zend_globals.h
@@ -119,6 +119,8 @@ struct _zend_compiler_globals {
void *ini_parser;
#endif
+ struct _zend_ini_parser_param *ini_parser_param;
+
int interactive;
};
@@ -225,4 +227,16 @@ struct _zend_alloc_globals {
#endif
};
+
+struct _zend_scanner_globals {
+ FILE *yyin;
+ FILE *yyout;
+ int yy_leng;
+ char *yy_text;
+ struct yy_buffer_state *current_buffer;
+ char *c_buf_p;
+ int init;
+ int start;
+};
+
#endif /* ZEND_GLOBALS_H */