| 919 | } |
| 920 | |
| 921 | extern 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 | |
| 935 | extern zipFile ZEXPORT zipOpen(const char* pathname, int append) |
nothing calls this directly
no test coverage detected