summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2015-04-09 03:03:27 +0200
committerAndroid Git Automerger <android-git-automerger@android.com>2015-04-09 03:03:27 +0200
commit9e0d0c7c917ae87dcb76a8208f7d7b62feb72196 (patch)
tree31fac1003977733a1ca16406ac0515dc445874bd
parentam 0a7c1694: am ca7bf531: Merge "Rotate logs only when there are actual operations" (diff)
parentam 64346eae: Merge "Remove a couple of unused inlines from minzip/Zip.h." (diff)
downloadandroid_bootable_recovery-9e0d0c7c917ae87dcb76a8208f7d7b62feb72196.tar
android_bootable_recovery-9e0d0c7c917ae87dcb76a8208f7d7b62feb72196.tar.gz
android_bootable_recovery-9e0d0c7c917ae87dcb76a8208f7d7b62feb72196.tar.bz2
android_bootable_recovery-9e0d0c7c917ae87dcb76a8208f7d7b62feb72196.tar.lz
android_bootable_recovery-9e0d0c7c917ae87dcb76a8208f7d7b62feb72196.tar.xz
android_bootable_recovery-9e0d0c7c917ae87dcb76a8208f7d7b62feb72196.tar.zst
android_bootable_recovery-9e0d0c7c917ae87dcb76a8208f7d7b62feb72196.zip
-rw-r--r--minzip/Zip.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/minzip/Zip.h b/minzip/Zip.h
index a2b2c26fc..86d8db597 100644
--- a/minzip/Zip.h
+++ b/minzip/Zip.h
@@ -85,22 +85,12 @@ void mzCloseZipArchive(ZipArchive* pArchive);
const ZipEntry* mzFindZipEntry(const ZipArchive* pArchive,
const char* entryName);
-/*
- * Get the number of entries in the Zip archive.
- */
-INLINE unsigned int mzZipEntryCount(const ZipArchive* pArchive) {
- return pArchive->numEntries;
-}
-
INLINE long mzGetZipEntryOffset(const ZipEntry* pEntry) {
return pEntry->offset;
}
INLINE long mzGetZipEntryUncompLen(const ZipEntry* pEntry) {
return pEntry->uncompLen;
}
-INLINE long mzGetZipEntryCrc32(const ZipEntry* pEntry) {
- return pEntry->crc32;
-}
/*
* Type definition for the callback function used by