diff options
author | Wez Furlong <wez@php.net> | 2002-03-21 01:11:52 +0000 |
---|---|---|
committer | Wez Furlong <wez@php.net> | 2002-03-21 01:11:52 +0000 |
commit | a662f012bba5a6fdc50533673f3fff47bf9af219 (patch) | |
tree | b35b92af8c3cd58d62e4b5d86995af6404380f8d /ext/zlib/php_zlib.h | |
parent | 4094513915c995c593c418d654714f0496da4e8f (diff) | |
download | php-git-a662f012bba5a6fdc50533673f3fff47bf9af219.tar.gz |
Convert the gzfile related functions into aliases for their equivalents
in ext/standard/file.c, so a gzopen()ed file pointer can be used in
fread, fseek etc.
Improved behaviour of zlib stream.
Moved passthru code into streams.c
# I'm not happy about BG(mmap_file)
Nuked gzgetss_state as no longer needed.
Diffstat (limited to 'ext/zlib/php_zlib.h')
-rw-r--r-- | ext/zlib/php_zlib.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/ext/zlib/php_zlib.h b/ext/zlib/php_zlib.h index f3da984d2d..8907838f55 100644 --- a/ext/zlib/php_zlib.h +++ b/ext/zlib/php_zlib.h @@ -25,8 +25,6 @@ #include <zlib.h> ZEND_BEGIN_MODULE_GLOBALS(zlib) - int gzgetss_state; - /* variables for transparent gzip encoding */ int compression_coding; z_stream stream; @@ -44,17 +42,6 @@ PHP_MSHUTDOWN_FUNCTION(zlib); PHP_RINIT_FUNCTION(zlib); PHP_MINFO_FUNCTION(zlib); PHP_FUNCTION(gzopen); -PHP_FUNCTION(gzclose); -PHP_FUNCTION(gzeof); -PHP_FUNCTION(gzread); -PHP_FUNCTION(gzgetc); -PHP_FUNCTION(gzgets); -PHP_FUNCTION(gzgetss); -PHP_FUNCTION(gzwrite); -PHP_FUNCTION(gzrewind); -PHP_FUNCTION(gztell); -PHP_FUNCTION(gzseek); -PHP_FUNCTION(gzpassthru); PHP_FUNCTION(readgzfile); PHP_FUNCTION(gzfile); PHP_FUNCTION(gzcompress); |