diff options
author | Marcus Boerger <helly@php.net> | 2002-08-21 03:04:17 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2002-08-21 03:04:17 +0000 |
commit | 5e7a9af0623a82ad527d47d06383f5fcf5c83b6a (patch) | |
tree | 43c0f8cff09ec7691fb94fcab5a804e6e880d497 /main/php_output.h | |
parent | a832091a2c5226a755733d06e4a40c33eeebdc2c (diff) | |
download | php-git-5e7a9af0623a82ad527d47d06383f5fcf5c83b6a.tar.gz |
full decopling of size parameters of ob_start() and internal buffer handlers
#intended behaviour is now fully implemented,
Diffstat (limited to 'main/php_output.h')
-rw-r--r-- | main/php_output.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/main/php_output.h b/main/php_output.h index eb26087a0b..a9cb0fd091 100644 --- a/main/php_output.h +++ b/main/php_output.h @@ -31,6 +31,7 @@ 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); PHPAPI int php_start_ob_buffer_named(const char *output_handler_name, uint chunk_size, zend_bool erase TSRMLS_DC); +PHPAPI int php_start_ob_buffer_ibc(zval *output_handler, uint initial_size, uint block_size, uint chunk_size, zend_bool erase TSRMLS_DC); PHPAPI void php_end_ob_buffer(zend_bool send_buffer, zend_bool just_flush TSRMLS_DC); PHPAPI void php_end_ob_buffers(zend_bool send_buffer TSRMLS_DC); PHPAPI int php_ob_get_buffer(zval *p TSRMLS_DC); |