| 758 | |
| 759 | |
| 760 | extern unzFile ZEXPORT unzOpen2(const char* path, |
| 761 | zlib_filefunc_def* pzlib_filefunc32_def) |
| 762 | { |
| 763 | if (pzlib_filefunc32_def != NULL) |
| 764 | { |
| 765 | zlib_filefunc64_32_def zlib_filefunc64_32_def_fill; |
| 766 | fill_zlib_filefunc64_32_def_from_filefunc32(&zlib_filefunc64_32_def_fill, pzlib_filefunc32_def); |
| 767 | return unzOpenInternal(path, &zlib_filefunc64_32_def_fill, 0); |
| 768 | } |
| 769 | return unzOpenInternal(path, NULL, 0); |
| 770 | } |
| 771 | |
| 772 | extern unzFile ZEXPORT unzOpen2_64(const void* path, |
| 773 | zlib_filefunc64_def* pzlib_filefunc_def) |
nothing calls this directly
no test coverage detected