summaryrefslogtreecommitdiff
path: root/main/php_output.h
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2014-10-29 20:02:41 +0100
committerAnatol Belski <ab@php.net>2014-10-29 20:02:41 +0100
commit5d76185792d2c7c7d47838b71a0b230f9668e21c (patch)
treeb95dd5e0b77f47c8ee3b58d4aca49c12af6e1f5e /main/php_output.h
parent4b8f411d313bddb0c1cd9308a7402ea20fb348b4 (diff)
downloadphp-git-5d76185792d2c7c7d47838b71a0b230f9668e21c.tar.gz
export output globals
needed by phpdbg
Diffstat (limited to 'main/php_output.h')
-rw-r--r--main/php_output.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/main/php_output.h b/main/php_output.h
index 0312e256f8..947da2c915 100644
--- a/main/php_output.h
+++ b/main/php_output.h
@@ -152,6 +152,12 @@ ZEND_BEGIN_MODULE_GLOBALS(output)
int output_start_lineno;
ZEND_END_MODULE_GLOBALS(output)
+#ifdef ZTS
+PHPAPI extern int output_globals_id;
+#else
+PHPAPI extern php_output_globals output_globals;
+#endif
+
/* there should not be a need to use OG() from outside of output.c */
#ifdef ZTS
# define OG(v) TSRMG(output_globals_id, zend_output_globals *, v)