Is there a way to put a breakpoint on any function in Visual Studio, sort of like bm kernel32!LoadLib*
in WinDbg?
I know one way is to break at application start, find the required DLL load address, then add offset to required function you can get via Depends, and create a breakpoint on address. But that's really slow, and switching to WinDbg and back is also pretty annoying.
Maybe there is a better way?