【现象】
连接时,提示无法解析的外部符号
【原因1】:
DLL和lib是c编码的,exe是C++的工程。
【解决方案1】:
extern "C"
{
#include "../DLL/Api.h"“
}
包含头文件时,要用extern
原创文章,作者:carmelaweatherly,如若转载,请注明出处:https://blog.ytso.com/191058.html
【现象】
连接时,提示无法解析的外部符号
【原因1】:
DLL和lib是c编码的,exe是C++的工程。
【解决方案1】:
extern "C"
{
#include "../DLL/Api.h"“
}
包含头文件时,要用extern
原创文章,作者:carmelaweatherly,如若转载,请注明出处:https://blog.ytso.com/191058.html