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