diff options
author | Stig Bakken <ssb@php.net> | 2002-04-05 13:07:43 +0000 |
---|---|---|
committer | Stig Bakken <ssb@php.net> | 2002-04-05 13:07:43 +0000 |
commit | dedf2a4c39853aba38bd471767f80e4dc72ddd14 (patch) | |
tree | 6800e36d00d18031d3c0296f795d632a0ebce889 /ext/zlib/php_zlib.h | |
parent | 16d7d7bdd2db7464d33d70eaa07609b94482fbe9 (diff) | |
download | php-git-dedf2a4c39853aba38bd471767f80e4dc72ddd14.tar.gz |
@Add zlib.output_compression_level option (Stig)
Diffstat (limited to 'ext/zlib/php_zlib.h')
-rw-r--r-- | ext/zlib/php_zlib.h | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/ext/zlib/php_zlib.h b/ext/zlib/php_zlib.h index 803727c7da..b33d57c06e 100644 --- a/ext/zlib/php_zlib.h +++ b/ext/zlib/php_zlib.h @@ -26,12 +26,13 @@ ZEND_BEGIN_MODULE_GLOBALS(zlib) /* variables for transparent gzip encoding */ - int compression_coding; - z_stream stream; - uLong crc; + int compression_coding; + z_stream stream; + uLong crc; int ob_gzhandler_status; int ob_gzip_coding; int output_compression; + int output_compression_level; ZEND_END_MODULE_GLOBALS(zlib) extern zend_module_entry php_zlib_module_entry; @@ -66,3 +67,11 @@ extern php_stream_wrapper php_stream_gzip_wrapper; #define phpext_zlib_ptr zlib_module_ptr #endif /* PHP_ZLIB_H */ + +/* + * Local variables: + * tab-width: 4 + * c-basic-offset: 4 + * indent-tabs-mode: t + * End: + */ |