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

Function zipOpen2_64

extlibs/minizip/src/zip.c:921–932  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

919}
920
921extern zipFile ZEXPORT zipOpen2_64(const void* pathname, int append, zipcharpc* globalcomment, zlib_filefunc64_def* pzlib_filefunc_def)
922{
923 if (pzlib_filefunc_def != NULL)
924 {
925 zlib_filefunc64_32_def zlib_filefunc64_32_def_fill;
926 zlib_filefunc64_32_def_fill.zfile_func64 = *pzlib_filefunc_def;
927 zlib_filefunc64_32_def_fill.ztell32_file = NULL;
928 zlib_filefunc64_32_def_fill.zseek32_file = NULL;
929 return zipOpen3(pathname, append, globalcomment, &zlib_filefunc64_32_def_fill);
930 }
931 return zipOpen3(pathname, append, globalcomment, NULL);
932}
933
934
935extern zipFile ZEXPORT zipOpen(const char* pathname, int append)

Callers

nothing calls this directly

Calls 1

zipOpen3Function · 0.85

Tested by

no test coverage detected