MSVC 2017的ODBC编译错误

时间:2018-08-01 03:49:49

标签: compiler-errors visual-studio-2017

全部

我最近将编译器从MSVC 2010 Pro升级到了MSVC 2017社区。

现在我遇到一个错误:

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

但错误仍然存​​在。

我想念什么?

0 个答案:

没有答案