| 918 | } |
| 919 | |
| 920 | extern zipFile ZEXPORT zipOpen2 (const char *pathname, int append, zipcharpc* globalcomment, zlib_filefunc_def* pzlib_filefunc32_def) |
| 921 | { |
| 922 | if (pzlib_filefunc32_def != NULL) |
| 923 | { |
| 924 | zlib_filefunc64_32_def zlib_filefunc64_32_def_fill; |
| 925 | fill_zlib_filefunc64_32_def_from_filefunc32(&zlib_filefunc64_32_def_fill,pzlib_filefunc32_def); |
| 926 | return zipOpen3(pathname, append, globalcomment, &zlib_filefunc64_32_def_fill); |
| 927 | } |
| 928 | else |
| 929 | return zipOpen3(pathname, append, globalcomment, NULL); |
| 930 | } |
| 931 | |
| 932 | extern zipFile ZEXPORT zipOpen2_64 (const void *pathname, int append, zipcharpc* globalcomment, zlib_filefunc64_def* pzlib_filefunc_def) |
| 933 | { |
nothing calls this directly
no test coverage detected