全部
我最近将编译器从MSVC 2010 Pro升级到了MSVC 2017社区。 p>
现在我遇到一个错误:
odbccp32.lib(dllload.obj) : error LNK2019: unresolved external symbol __vsnwprintf_s referenced in function _StringCchPrintfW
以下来自Google搜索的建议,即我将in here添加到了源代码中:
#if _MSC_VER >= 1900
#include <stdio.h>
#include <stdarg.h>
#endif
但错误仍然存在。
我想念什么?