Knowing Libs of DLL
C / C++ / MFC
3
Posts
3
Posters
0
Views
1
Watching
-
Dear All, How do I know the Mfc Lib files referring MFC dll. Ex : knowing MFC42D.dll referencing LIB files.
It is common practice to give the library file the same name as the DLL file. So the libary file for MFC42D.dll will be MFC42D.lib.
-
Dear All, How do I know the Mfc Lib files referring MFC dll. Ex : knowing MFC42D.dll referencing LIB files.
Should be easy, you won't even get to the dll linking stage (which happens after compilation) if you don't have the necessary lib files included for the linker, so you'll get an error. ...and like Jochen already mentioned, it's customary to keep the same name.