diff options
author | Marcus Boerger <helly@php.net> | 2004-03-14 23:56:07 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2004-03-14 23:56:07 +0000 |
commit | 97b5bb474e027643278ae4358d8fc69bf502d0eb (patch) | |
tree | 1e6eb1808ba6c257daf8a04c1ef7498d59e9f8cc /main/php_output.h | |
parent | 04a242541bdcd67e7abc12d0b044cf68516fa4b3 (diff) | |
download | php-git-97b5bb474e027643278ae4358d8fc69bf502d0eb.tar.gz |
Guard display_startup_errors with checking for default (working) output
functions.
Diffstat (limited to 'main/php_output.h')
-rw-r--r-- | main/php_output.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/main/php_output.h b/main/php_output.h index a1e6c81c1f..591b386779 100644 --- a/main/php_output.h +++ b/main/php_output.h @@ -28,6 +28,9 @@ PHPAPI void php_output_startup(void); PHPAPI void php_output_activate(TSRMLS_D); PHPAPI void php_output_set_status(zend_bool status TSRMLS_DC); PHPAPI void php_output_register_constants(TSRMLS_D); +PHPAPI int php_default_output_func(const char *str, uint str_len TSRMLS_DC); +PHPAPI int php_ub_body_write(const char *str, uint str_length TSRMLS_DC); +PHPAPI int php_ub_body_write_no_header(const char *str, uint str_length TSRMLS_DC); PHPAPI int php_body_write(const char *str, uint str_length TSRMLS_DC); PHPAPI int php_header_write(const char *str, uint str_length TSRMLS_DC); PHPAPI int php_start_ob_buffer(zval *output_handler, uint chunk_size, zend_bool erase TSRMLS_DC); |