Common: Add MinizipHelpers (RAM and UTF-8 compatible fopen)

This commit is contained in:
Connor McLaughlin
2020-08-06 19:33:02 +10:00
parent 6e586311e8
commit 7cafb8c515
6 changed files with 116 additions and 56 deletions

View File

@@ -0,0 +1,9 @@
#pragma once
#include "unzip.h"
namespace MinizipHelpers {
unzFile OpenUnzMemoryFile(const void* memory, size_t memory_size);
unzFile OpenUnzFile(const char* filename);
} // namespace MinizipHelpers