C++ 由于隐式依赖模块中缺少导出功能,至少有一个模块具有未解析的导入

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/4958858/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-28 17:01:29  来源:igfitidea点击:

At least one module has an unresolved import due to a missing export function in an implicitly dependent module

c++

提问by InfoLearner

When I point to my C++ dll from DependencyWalker, I see the error message "At least one module has an unresolved import due to a missing export function in an implicitly dependent module"

当我从 DependencyWalker 指向我的 C++ dll 时,我看到错误消息“由于隐式依赖模块中缺少导出函数,至少有一个模块具有未解析的导入”

Can you please suggest what the error is?

你能建议错误是什么吗?

回答by bobbogo

Your dll (or a dll that it imports) has an import from another dll (bad.dllsay). When DependencyWalker scans bad.dllit finds that it does not export the required function. This missing export will be labelled in red (or somesuch) in your dll's import list.

您的 dll(或它导入的 dll)从另一个 dll 导入(bad.dll比如说)。当 DependencyWalker 扫描时,bad.dll它发现它没有导出所需的函数。这个丢失的导出将在你的 dll 的导入列表中以红色(或类似的)标记。

  • ViewUndecorate C++ Functionsmight be useful to you.
  • ViewUndecorate C++ Functions可能对你有用。