在win32 VS2013导入#include“zlib.h”并使用uncompress 报错error LNK2001: 无法解析的外部符号 _MOZ_Z_uncompress

7> 正在创建库 F:*\frameworks\runtime-src\proj.win32\Debug.win32\football.lib 和对象 F:*\frameworks\runtime-src\proj.win32\Debug.win32\football.exp
7>LINK : warning LNK4098: 默认库“MSVCRT”与其他库的使用冲突;请使用 /NODEFAULTLIB:library
7>NativeCommon.obj : error LNK2001: 无法解析的外部符号 _MOZ_Z_uncompress
请问这个问题大家遇到过吗 该怎么解决的

是不是没引用zip库,这个分平台的
#ifdef MINIZIP_FROM_SYSTEM
#include <minizip/unzip.h>
#else // from our embedded sources
#include “unzip/unzip.h”
#endif

楼主看看你这里没有没有这个库呢 我也遇到过这中无法解析外部符号的错误 都是没有添加库文件造成的