diff options
author | Sterling Hughes <sterling@php.net> | 2001-05-27 02:52:45 +0000 |
---|---|---|
committer | Sterling Hughes <sterling@php.net> | 2001-05-27 02:52:45 +0000 |
commit | ee60cf057f75febf5768340c2700c20ca2016541 (patch) | |
tree | af0d545cb427dc9b721d0d2d1c1a363621376b45 /ext/zip/php_zip.h | |
parent | ea0f4078b5653cc6ce23c9c83d1d0e76bd7d963e (diff) | |
download | php-git-ee60cf057f75febf5768340c2700c20ca2016541.tar.gz |
Change the names around a bit zip_opendir() -> zip_open() and
zip_open() -> zip_entry_open()
Diffstat (limited to 'ext/zip/php_zip.h')
-rw-r--r-- | ext/zip/php_zip.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/zip/php_zip.h b/ext/zip/php_zip.h index 71c65cf8c3..c4b46ca37b 100644 --- a/ext/zip/php_zip.h +++ b/ext/zip/php_zip.h @@ -35,16 +35,16 @@ extern zend_module_entry zip_module_entry; PHP_MINIT_FUNCTION(zip); PHP_MINFO_FUNCTION(zip); -PHP_FUNCTION(zip_opendir); -PHP_FUNCTION(zip_readdir); -PHP_FUNCTION(zip_closedir); +PHP_FUNCTION(zip_open); +PHP_FUNCTION(zip_read); +PHP_FUNCTION(zip_close); PHP_FUNCTION(zip_entry_name); PHP_FUNCTION(zip_entry_compressedsize); PHP_FUNCTION(zip_entry_filesize); PHP_FUNCTION(zip_entry_compressionmethod); -PHP_FUNCTION(zip_open); -PHP_FUNCTION(zip_read); -PHP_FUNCTION(zip_close); +PHP_FUNCTION(zip_entry_open); +PHP_FUNCTION(zip_entry_read); +PHP_FUNCTION(zip_entry_close); typedef struct { ZZIP_FILE *fp; |