| 908 | } |
| 909 | |
| 910 | extern zipFile ZEXPORT zipOpen2(const char* pathname, int append, zipcharpc* globalcomment, zlib_filefunc_def* pzlib_filefunc32_def) |
| 911 | { |
| 912 | if (pzlib_filefunc32_def != NULL) |
| 913 | { |
| 914 | zlib_filefunc64_32_def zlib_filefunc64_32_def_fill; |
| 915 | fill_zlib_filefunc64_32_def_from_filefunc32(&zlib_filefunc64_32_def_fill, pzlib_filefunc32_def); |
| 916 | return zipOpen3(pathname, append, globalcomment, &zlib_filefunc64_32_def_fill); |
| 917 | } |
| 918 | return zipOpen3(pathname, append, globalcomment, NULL); |
| 919 | } |
| 920 | |
| 921 | extern zipFile ZEXPORT zipOpen2_64(const void* pathname, int append, zipcharpc* globalcomment, zlib_filefunc64_def* pzlib_filefunc_def) |
| 922 | { |
nothing calls this directly
no test coverage detected