How can I go through the source code of a DLL loaded on the fly?

How do I get through the source code of a DLL that loads on the fly? I have an SLN that was automatically created by loading a BIN file in Visual Studio 2008. It uses a command line interface and in this command line I can give a command to load a DLL. Download DLL I was built from source code. So I have to go through this source code.

Do I need to somehow download mdb or somehow tell the integrated development environment how to handle the source code? Currently, I cannot put breakpoints in the source code.

+3
source share
5 answers

DLL,

Debugging symbols page

, pdb , , .

+6

DLL (, LoadLibrary ++), DLL. , DLL, DLL . "" Visual Studio, DLL.

DLL, EXE, DLL . Visual Studio , EXE, , DLL .

+2

, MSVC, PDB DLL. PDB - , , , .

- > - > - > , PDB, .

+1

dll .

, .

0

Source: https://habr.com/ru/post/1792439/


All Articles