diff options
author | Nuno Lopes <nlopess@php.net> | 2006-08-14 20:08:18 +0000 |
---|---|---|
committer | Nuno Lopes <nlopess@php.net> | 2006-08-14 20:08:18 +0000 |
commit | ddb4d1fdcc2162edd7432080b117eaae6e24eb87 (patch) | |
tree | 8ab7c292e00edbe8ed2b9c1514894005e604a272 /ext/zlib/php_zlib.h | |
parent | 8657927354c6c03320f7733b5859cd5272712b33 (diff) | |
download | php-git-ddb4d1fdcc2162edd7432080b117eaae6e24eb87.tar.gz |
move static declaration to *.c files
mroe static/const keywording
Diffstat (limited to 'ext/zlib/php_zlib.h')
-rw-r--r-- | ext/zlib/php_zlib.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/ext/zlib/php_zlib.h b/ext/zlib/php_zlib.h index 1e9c0b5cff..44610dc979 100644 --- a/ext/zlib/php_zlib.h +++ b/ext/zlib/php_zlib.h @@ -39,26 +39,9 @@ extern php_stream_filter_factory php_zlib_filter_factory; extern zend_module_entry php_zlib_module_entry; #define zlib_module_ptr &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(readgzfile); -PHP_FUNCTION(gzfile); -PHP_FUNCTION(gzcompress); -PHP_FUNCTION(gzuncompress); -PHP_FUNCTION(gzdeflate); -PHP_FUNCTION(gzinflate); -PHP_FUNCTION(gzencode); -PHP_FUNCTION(ob_gzhandler); -PHP_FUNCTION(zlib_get_coding_type); - -int php_enable_output_compression(int buffer_size TSRMLS_DC); int php_ob_gzhandler_check(TSRMLS_D); php_stream *php_stream_gzopen(php_stream_wrapper *wrapper, char *path, char *mode, int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC); -extern php_stream_ops php_stream_gzio_ops; extern php_stream_wrapper php_stream_gzip_wrapper; #ifdef ZTS |