diff options
Diffstat (limited to '')
-rw-r--r-- | minzip/Zip.h | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/minzip/Zip.h b/minzip/Zip.h index 57c0abd2c..1c1df2fae 100644 --- a/minzip/Zip.h +++ b/minzip/Zip.h @@ -56,14 +56,6 @@ typedef struct { } UnterminatedString; /* - * The information we pass down to writeProcessFunction. - */ -typedef struct { - int fd; - unsigned char* aligned_buffer; -} WriteInfo; - -/* * Open a Zip archive. * * On success, returns 0 and populates "pArchive". Returns nonzero errno @@ -174,7 +166,7 @@ bool mzIsZipEntryIntact(const ZipArchive *pArchive, const ZipEntry *pEntry); * Inflate and write an entry to a file. */ bool mzExtractZipEntryToFile(const ZipArchive *pArchive, - const ZipEntry *pEntry, WriteInfo *wi); + const ZipEntry *pEntry, int fd); /* * Inflate all entries under zipDir to the directory specified by |