aboutsummaryrefslogtreecommitdiffstats
path: root/minzip
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2015-04-08 12:08:32 -0700
committerElliott Hughes <enh@google.com>2015-04-08 12:08:32 -0700
commit9ad9d66f818fc9a86eacaac988b1ad72c6b27696 (patch)
tree31fac1003977733a1ca16406ac0515dc445874bd /minzip
parentca7bf53189c70ef0f687d54d772e5eaadc0b1c7c (diff)
downloadbootable_recovery-9ad9d66f818fc9a86eacaac988b1ad72c6b27696.zip
bootable_recovery-9ad9d66f818fc9a86eacaac988b1ad72c6b27696.tar.gz
bootable_recovery-9ad9d66f818fc9a86eacaac988b1ad72c6b27696.tar.bz2
Remove a couple of unused inlines from minzip/Zip.h.
Change-Id: I805883e3863673416898bdef39c5703ca33f18e0
Diffstat (limited to 'minzip')
-rw-r--r--minzip/Zip.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/minzip/Zip.h b/minzip/Zip.h
index a2b2c26..86d8db5 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