I have a DLL with its import library. When I try to reference the import library, I get linker errors that some functions can’t be resolved. I think that there is a mismatch in versions of the DLL and its import library.
Is there any way to check that an import library fully match its DLL, without checking tons of functions manually via DumpBin?
I have a DLL with its import library. When I try to reference the
Share
The problem is that the header file contains functions that are not defined in the .lib file. Most likely you have a new header file and an out of date .lib file.
Possible solutions: