I am working in VS2005, I have a part of freeimage source code. I compile it into .lib and dll. When I debug the program, I want to step into freeimage source code ,however vs2005 do not know which code is the freeimage.lib freeimage.dll compiled from, How can I let vs2005 know it. I want to step into freeimage source code, when using its .lib and dll. Many thanks!
相关问题
- How to know full paths to DLL's from .csproj f
- Reading data from a SAS data source in .Net
- There was a mismatch between the processor archite
- Interface from a C DLL to .NET
- Bitshift operation with signed and unsigned
相关文章
- vs2017wpf项目引用dll的路径不正确的问题
- Determine if an executable (or library) is 32 -or
- Are resource files compiled as UNICODE or ANSI cod
- Identify which file has included some particular h
- Assimp model loading library install/linking troub
- CreateProcess STATUS_DLL_NOT_FOUND - which dll?
- .NET dll hot swap, no application restart
- The module “.dll” was loaded but the entry-point w
You need to build the code in a debug configuration and generate a program database file (.pdb) that contains the debug symbols: http://msdn.microsoft.com/en-us/library/cyz1h6zd(VS.80).aspx
Then when you run the application use the debug version of the dll and make sure that Visual Studio can see the .pdb file. Usually if everything is in one solution it can find it, otherwise you can put the .pdb file into the same directory as the dll.