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

SamB
  • 9,039
  • 5
  • 49
  • 56
Kajetan Abt
  • 1,505
  • 3
  • 15
  • 28

2 Answers2

1

The symbol file search is conducted whenever a DLL is loaded into your process space, independent of how that happens. Your problem must lie elsewhere.

Steve Townsend
  • 53,498
  • 9
  • 91
  • 140