Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

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"

Can you please suggest what the error is?

like image 368
InfoLearner Avatar asked Feb 10 '11 15:02

InfoLearner


1 Answers

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.
like image 94
bobbogo Avatar answered Oct 15 '22 00:10

bobbogo