2019年12月23日

libeay32.lib(v3_utl.obj) : error LNK2001: unresolved external symbol _sscanf

摘要: 解决办法:在项目属性中 Linker->Input 中加入:legacy_stdio_definitions.lib 阅读全文

posted @ 2019-12-23 14:16 thinkinc999 阅读(539) 评论(0) 推荐(0) 编辑

ssleay32.lib(d1_both.obj) : error LNK2001: unresolved external symbol ___iob_func

摘要: 解决办法,在 stdafx.cpp 中加入:// stdafx.cpp#define stdin (__acrt_iob_func(0))#define stdout (__acrt_iob_func(1))#define stderr (__acrt_iob_func(2))FILE _iob[] = { *stdin, *stdout, *stderr };extern "C" FILE *... 阅读全文

posted @ 2019-12-23 14:14 thinkinc999 阅读(723) 评论(1) 推荐(0) 编辑

导航