美文网首页
4.error LNK2001: 无法解析的外部符号

4.error LNK2001: 无法解析的外部符号

作者: 豚大叔的小屋 | 来源:发表于2023-01-16 16:34 被阅读0次

    1.例子
    1)错误 23 error LNK2001: 无法解析的外部符号 "public: static class QString __cdecl SysCommon::getCurrentPath(void)" (?getCurrentPath@SysCommon@@SA?AVQString@@XZ) D:\New\Service\Config.obj Service
    2)解决方案:
    缺少SysCommon.cpp和SysCommon.h文件。
    把SysCommon.cpp和SysCommon.h拷贝到相应路径下
    如果有必要,可以项目,添加--现有项
    2.例子

    图片.png
    1)问题分析
    程序中调用的动态库 Capturer.dll。,但是当前使用Capturer.dll、Capturer.lib和Capturer.h生成不匹配。比如说,当前Capturer.h有某些函数或变量,但是Capturer.dll、Capturer.lib中却没有,就会导致出现上面图像中问题。
    2)解决方案
    根据报错的startOffsetCaptureSelf和clearOffsetCaptureSelfData函数,排查Capturer
    .h,看当前最新程序有或者没有以上2个函数。
    图片.png 并生成新Capturer.dll、Capturer.lib,拷贝到需要调用的路径下面,重新编译程序即可。

    相关文章

      网友评论

          本文标题:4.error LNK2001: 无法解析的外部符号

          本文链接:https://www.haomeiwen.com/subject/ckizcdtx.html