| 767 | |
| 768 | |
| 769 | extern unzFile ZEXPORT unzOpen2 (voidpf file, |
| 770 | zlib_filefunc_def* pzlib_filefunc32_def) |
| 771 | { |
| 772 | if (pzlib_filefunc32_def != NULL) |
| 773 | { |
| 774 | zlib_filefunc64_32_def zlib_filefunc64_32_def_fill; |
| 775 | fill_zlib_filefunc64_32_def_from_filefunc32(&zlib_filefunc64_32_def_fill,pzlib_filefunc32_def); |
| 776 | return unzOpenInternal(file, &zlib_filefunc64_32_def_fill, 0, UNZ_DEFAULT_FLAGS); |
| 777 | } |
| 778 | return unzOpenInternal(file, NULL, 0, UNZ_DEFAULT_FLAGS); |
| 779 | } |
| 780 | |
| 781 | extern unzFile ZEXPORT unzOpen2_64 (voidpf file, |
| 782 | zlib_filefunc64_def* pzlib_filefunc_def) |
no test coverage detected