diff options
Diffstat (limited to '')
-rw-r--r-- | minzip/Zip.h | 10 |
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 |