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

Function unzOpen2

extlibs/minizip/src/unzip.c:760–770  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

758
759
760extern unzFile ZEXPORT unzOpen2(const char* path,
761 zlib_filefunc_def* pzlib_filefunc32_def)
762{
763 if (pzlib_filefunc32_def != NULL)
764 {
765 zlib_filefunc64_32_def zlib_filefunc64_32_def_fill;
766 fill_zlib_filefunc64_32_def_from_filefunc32(&zlib_filefunc64_32_def_fill, pzlib_filefunc32_def);
767 return unzOpenInternal(path, &zlib_filefunc64_32_def_fill, 0);
768 }
769 return unzOpenInternal(path, NULL, 0);
770}
771
772extern unzFile ZEXPORT unzOpen2_64(const void* path,
773 zlib_filefunc64_def* pzlib_filefunc_def)

Callers

nothing calls this directly

Calls 2

unzOpenInternalFunction · 0.85

Tested by

no test coverage detected