| 930 | } |
| 931 | |
| 932 | extern zipFile ZEXPORT zipOpen2_64 (const void *pathname, int append, zipcharpc* globalcomment, zlib_filefunc64_def* pzlib_filefunc_def) |
| 933 | { |
| 934 | if (pzlib_filefunc_def != NULL) |
| 935 | { |
| 936 | zlib_filefunc64_32_def zlib_filefunc64_32_def_fill; |
| 937 | zlib_filefunc64_32_def_fill.zfile_func64 = *pzlib_filefunc_def; |
| 938 | zlib_filefunc64_32_def_fill.ztell32_file = NULL; |
| 939 | zlib_filefunc64_32_def_fill.zseek32_file = NULL; |
| 940 | return zipOpen3(pathname, append, globalcomment, &zlib_filefunc64_32_def_fill); |
| 941 | } |
| 942 | else |
| 943 | return zipOpen3(pathname, append, globalcomment, NULL); |
| 944 | } |
| 945 | |
| 946 | |
| 947 | |