In my source I have:
#pragma comment(lib, "ldv32.lib")
Originally this was:
#pragma comment(lib, "ldv32")
When I build and then try to register the DLL it fails:
I used "Dependency Walker" to look at the DLL and I could see that it was trying to open LDV32.DLL, so I then edited the project and modified the pragma. Cleaned and Rebuilt project, however it still fails and "Dependency Walker" still reports that the DLL is looking for LDV32.DLL
How do I fix this, I've checked the path and project build, the location of the LIB is specified but why is it looking for a DLL and not the LIB?