MCPcopy Create free account
hub / github.com/ObEngine/ObEngine / unzOpen2_64

Function unzOpen2_64

extlibs/minizip/src/unzip.c:772–784  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

770}
771
772extern unzFile ZEXPORT unzOpen2_64(const void* path,
773 zlib_filefunc64_def* pzlib_filefunc_def)
774{
775 if (pzlib_filefunc_def != NULL)
776 {
777 zlib_filefunc64_32_def zlib_filefunc64_32_def_fill;
778 zlib_filefunc64_32_def_fill.zfile_func64 = *pzlib_filefunc_def;
779 zlib_filefunc64_32_def_fill.ztell32_file = NULL;
780 zlib_filefunc64_32_def_fill.zseek32_file = NULL;
781 return unzOpenInternal(path, &zlib_filefunc64_32_def_fill, 1);
782 }
783 return unzOpenInternal(path, NULL, 1);
784}
785
786extern unzFile ZEXPORT unzOpen(const char* path)
787{

Callers

nothing calls this directly

Calls 1

unzOpenInternalFunction · 0.85

Tested by

no test coverage detected