我们在项目中使用zlib.lib
,在重建了这个lib之后,我再也无法编译项目了。其中一个错误说:
error LNK2019: unresolved external symbol deflateEnd referenced in function lws_extension_callback_deflate_frame
我dumpbin
了解了我的图书馆和我的资料:
013 00000000 UNDEF notype () External | deflateEnd
027 00000000 UNDEF notype () External | deflateEnd
013 000013B0 SECT5 notype () External | deflateEnd
044 0000000C SECT6 notype Static | $unwind$deflateEnd
045 0000000C SECT7 notype Static | $pdata$deflateEnd
00E 00000000 UNDEF notype () External | deflateEnd
如何阅读?
013
出现两次?notype
是什么意思?为什么有时候会有()
,有时候 - 不是?External
的含义是什么?$unwind$
和$pdata$
是什么?