| 770 | } |
| 771 | |
| 772 | extern unzFile ZEXPORT unzOpen2_64(const void* path, |
| 773 | zlib_filefunc64_def* pzlib_filefunc_def) |
| 774 | { |
| 775 | if (pzlib_filefunc_def != NULL) |
| 776 | { |
| 777 | zlib_filefunc64_32_def zlib_filefunc64_32_def_fill; |
| 778 | zlib_filefunc64_32_def_fill.zfile_func64 = *pzlib_filefunc_def; |
| 779 | zlib_filefunc64_32_def_fill.ztell32_file = NULL; |
| 780 | zlib_filefunc64_32_def_fill.zseek32_file = NULL; |
| 781 | return unzOpenInternal(path, &zlib_filefunc64_32_def_fill, 1); |
| 782 | } |
| 783 | return unzOpenInternal(path, NULL, 1); |
| 784 | } |
| 785 | |
| 786 | extern unzFile ZEXPORT unzOpen(const char* path) |
| 787 | { |
nothing calls this directly
no test coverage detected