summaryrefslogtreecommitdiff
path: root/ext/zip/php_zip.h
diff options
context:
space:
mode:
authorSterling Hughes <sterling@php.net>2001-05-27 02:52:45 +0000
committerSterling Hughes <sterling@php.net>2001-05-27 02:52:45 +0000
commitee60cf057f75febf5768340c2700c20ca2016541 (patch)
treeaf0d545cb427dc9b721d0d2d1c1a363621376b45 /ext/zip/php_zip.h
parentea0f4078b5653cc6ce23c9c83d1d0e76bd7d963e (diff)
downloadphp-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.h12
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;