At least one module has an unresolved import due to a missing export function in an implicitly dependent module
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.
- View → Undecorate C++ Functions might be useful to you.
精彩评论