diff options
Diffstat (limited to 'main/php_output.h')
-rw-r--r-- | main/php_output.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/main/php_output.h b/main/php_output.h index 50f3b4c138..2278cce179 100644 --- a/main/php_output.h +++ b/main/php_output.h @@ -33,7 +33,12 @@ PHPAPI void php_end_implicit_flush(); PHPAPI char *php_get_output_start_filename(); PHPAPI int php_get_output_start_lineno(); -extern zend_module_entry output_module_entry; -#define phpext_output_ptr &output_module_entry +PHP_FUNCTION(ob_start); +PHP_FUNCTION(ob_end_flush); +PHP_FUNCTION(ob_end_clean); +PHP_FUNCTION(ob_get_contents); +PHP_FUNCTION(ob_implicit_flush); + +PHP_GINIT_FUNCTION(output); #endif /* _OUTPUT_BUFFER */ |