diff options
author | Doug Zongker <dougz@android.com> | 2009-05-08 18:43:28 +0200 |
---|---|---|
committer | Doug Zongker <dougz@android.com> | 2009-05-08 18:43:28 +0200 |
commit | 1c4ceae38f3fd7eb1e451d430acb5d99f257b0f9 (patch) | |
tree | 5dbf0392571a64b4afbe0ba73655c889f650eb75 /minzip/Zip.h | |
parent | align data passed to write() on 32k boundaries (diff) | |
download | android_bootable_recovery-1c4ceae38f3fd7eb1e451d430acb5d99f257b0f9.tar android_bootable_recovery-1c4ceae38f3fd7eb1e451d430acb5d99f257b0f9.tar.gz android_bootable_recovery-1c4ceae38f3fd7eb1e451d430acb5d99f257b0f9.tar.bz2 android_bootable_recovery-1c4ceae38f3fd7eb1e451d430acb5d99f257b0f9.tar.lz android_bootable_recovery-1c4ceae38f3fd7eb1e451d430acb5d99f257b0f9.tar.xz android_bootable_recovery-1c4ceae38f3fd7eb1e451d430acb5d99f257b0f9.tar.zst android_bootable_recovery-1c4ceae38f3fd7eb1e451d430acb5d99f257b0f9.zip |
Diffstat (limited to 'minzip/Zip.h')
-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 |