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

后端 未结 1 1287
无人共我
无人共我 2020-12-16 11:24

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 de

相关标签:
1条回答
  • 2020-12-16 11:36

    Your dll (or a dll that it imports) has an import from another dll (bad.dll say). When DependencyWalker scans bad.dll it 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.

    • ViewUndecorate C++ Functions might be useful to you.
    0 讨论(0)
提交回复
热议问题