diff options
author | Zeev Suraski <zeev@php.net> | 2001-03-04 15:12:38 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2001-03-04 15:12:38 +0000 |
commit | 39724f6e4a6eeb83ca0d32f1202b4a135b5e8e44 (patch) | |
tree | 43a867110a415b50bbfccdb1d3f0d656994de123 /ext/zlib/php_zlib.h | |
parent | b9749a40ccc953448e89d4ad5f77ba6609e78bf3 (diff) | |
download | php-git-39724f6e4a6eeb83ca0d32f1202b4a135b5e8e44.tar.gz |
Implemented chunked output buffering support - it's quite cool!
Diffstat (limited to 'ext/zlib/php_zlib.h')
-rw-r--r-- | ext/zlib/php_zlib.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/zlib/php_zlib.h b/ext/zlib/php_zlib.h index 7fa8916992..43c68f2b2d 100644 --- a/ext/zlib/php_zlib.h +++ b/ext/zlib/php_zlib.h @@ -32,6 +32,7 @@ typedef struct { int compression_coding; z_stream stream; uLong crc; + int ob_gzhandler_status; } php_zlib_globals; extern zend_module_entry php_zlib_module_entry; @@ -39,6 +40,7 @@ extern zend_module_entry php_zlib_module_entry; PHP_MINIT_FUNCTION(zlib); PHP_MSHUTDOWN_FUNCTION(zlib); +PHP_RINIT_FUNCTION(zlib); PHP_MINFO_FUNCTION(zlib); PHP_FUNCTION(gzopen); PHP_FUNCTION(gzclose); |