diff options
author | Narayan Kamath <narayan@google.com> | 2015-02-27 15:20:18 +0100 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2015-02-27 15:20:19 +0100 |
commit | 579b92991ccd626527c75042aca032d3ac4207a2 (patch) | |
tree | e9faaa34a12fcfe6cc9581338193bf0dc2346f14 /minzip/Zip.h | |
parent | Merge "Add tests for read_block_adb." (diff) | |
parent | Remove more dead code from minzip. (diff) | |
download | android_bootable_recovery-579b92991ccd626527c75042aca032d3ac4207a2.tar android_bootable_recovery-579b92991ccd626527c75042aca032d3ac4207a2.tar.gz android_bootable_recovery-579b92991ccd626527c75042aca032d3ac4207a2.tar.bz2 android_bootable_recovery-579b92991ccd626527c75042aca032d3ac4207a2.tar.lz android_bootable_recovery-579b92991ccd626527c75042aca032d3ac4207a2.tar.xz android_bootable_recovery-579b92991ccd626527c75042aca032d3ac4207a2.tar.zst android_bootable_recovery-579b92991ccd626527c75042aca032d3ac4207a2.zip |
Diffstat (limited to 'minzip/Zip.h')
-rw-r--r-- | minzip/Zip.h | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/minzip/Zip.h b/minzip/Zip.h index 54eab3222..a2b2c26fc 100644 --- a/minzip/Zip.h +++ b/minzip/Zip.h @@ -143,9 +143,12 @@ bool mzExtractZipEntryToBuffer(const ZipArchive *pArchive, const ZipEntry *pEntry, unsigned char* buffer); /* - * Inflate all entries under zipDir to the directory specified by + * Inflate all files under zipDir to the directory specified by * targetDir, which must exist and be a writable directory. * + * Directory entries and symlinks are not extracted. + * + * * The immediate children of zipDir will become the immediate * children of targetDir; e.g., if the archive contains the entries * @@ -160,21 +163,15 @@ bool mzExtractZipEntryToBuffer(const ZipArchive *pArchive, * /tmp/two * /tmp/d/three * - * flags is zero or more of the following: - * - * MZ_EXTRACT_FILES_ONLY - only unpack files, not directories or symlinks - * MZ_EXTRACT_DRY_RUN - don't do anything, but do invoke the callback - * * If timestamp is non-NULL, file timestamps will be set accordingly. * * If callback is non-NULL, it will be invoked with each unpacked file. * * Returns true on success, false on failure. */ -enum { MZ_EXTRACT_FILES_ONLY = 1, MZ_EXTRACT_DRY_RUN = 2 }; bool mzExtractRecursive(const ZipArchive *pArchive, const char *zipDir, const char *targetDir, - int flags, const struct utimbuf *timestamp, + const struct utimbuf *timestamp, void (*callback)(const char *fn, void*), void *cookie, struct selabel_handle *sehnd); |