Remove a couple of unused inlines from minzip/Zip.h.
Change-Id: I805883e3863673416898bdef39c5703ca33f18e0
This commit is contained in:
parent
ca7bf53189
commit
9ad9d66f81
1 changed files with 0 additions and 10 deletions
10
minzip/Zip.h
10
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
|
||||
|
|
Loading…
Reference in a new issue