msvcp60.dll dependency
-
I've been looking at a mass of spagetti code (which is supposedly an MFC app) from one the other monkeys here which for some reason has a dependency on msvcp60.dll. All our other MFC apps dont have this dependency - they only require mfc42.dll and msvcrt.dll - why this one?
-
I've been looking at a mass of spagetti code (which is supposedly an MFC app) from one the other monkeys here which for some reason has a dependency on msvcp60.dll. All our other MFC apps dont have this dependency - they only require mfc42.dll and msvcrt.dll - why this one?
msvcp60 contains classes such as basic_filebuf, basic_ios, etc. that start with the word basic_ (those are the ones I recognize at least). Those are not the only things in the dll, there are a lot more functions and classes. Try to use dumpbin /exports to see all the functions that are being exported. I just had another idea. Remove msvcprt.lib (that's the library I believe) from the linker's options and you will get a bunch of errors telling you that you have external dependencies missing. That way you will be able to see what functions in the source code are linked to msvcp60.dll. I hope that makes sense.:) // Afterall, I realized that even my comment lines have bugs When one cannot invent, one must at least improve (in bed).-My latest fortune cookie