Build fix for compiling against minizip.

pull/4631/head
Robert Osfield 2022-07-08 12:46:27 +01:00
parent 1c646057ce
commit 8e062792cd
1 changed files with 2 additions and 0 deletions

View File

@ -196,7 +196,9 @@ zlib_filefunc_def IOSystem2Unzip::get(IOSystem *pIOHandler) {
zlib_filefunc_def mapping;
mapping.zopen_file = (open_file_func)open;
#ifdef _UNZ_H
mapping.zopendisk_file = (opendisk_file_func)opendisk;
#endif
mapping.zread_file = (read_file_func)read;
mapping.zwrite_file = (write_file_func)write;
mapping.ztell_file = (tell_file_func)tell;