From ee60cf057f75febf5768340c2700c20ca2016541 Mon Sep 17 00:00:00 2001 From: Sterling Hughes Date: Sun, 27 May 2001 02:52:45 +0000 Subject: Change the names around a bit zip_opendir() -> zip_open() and zip_open() -> zip_entry_open() --- ext/zip/php_zip.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'ext/zip/php_zip.h') 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; -- cgit v1.2.1