1

I have issues with debugging of a library loaded at runtime, and an unknown is:

Does winbase::LoadLibrary() load the .pdb in debugging mode?

Because if it doesn't, that would explain why I cannot use any debugging in my DLL, and if it does, that would at least tell me to search for the problem somewhere else.

Obvious follow-up: If it does not, how do I get VS2010 to load the pdb anyway?

[1] http://msdn.microsoft.com/en-us/library/ms684175(VS.85).aspx

4

2 回答 2

1

无论何时将 DLL 加载到您的进程空间中,都会执行符号文件搜索,而与发生的方式无关。你的问题一定在别处。

于 2010-10-04T16:24:54.480 回答