开发者

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

开发者 https://www.devze.com 2023-02-10 05:46 出处:网络
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 d开发者_开发技巧ependent modu

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 d开发者_开发技巧ependent module"

Can you please suggest what the error is?


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

精彩评论

暂无评论...
验证码 换一张
取 消