| 233 | } |
| 234 | |
| 235 | void ExpandedZipFile::GetEntry(unsigned which, const char*& filename, const char*& data, unsigned& size) { |
| 236 | ExpandedZipEntry& entry = entries[which]; |
| 237 | filename = entry.filename; |
| 238 | data = entry.data; |
| 239 | size = entry.size; |
| 240 | } |
| 241 | |
| 242 | class UnZipFile { |
| 243 | unzFile uf; |
no outgoing calls
no test coverage detected