I'm am trying to debug a DLL which is called from a VC++ application, but cannot step-inside the DLL function because the DLL source is located in another solution project.
I have tried to set a break point right before the DLL function call but when I try to step-in it just passes right down.
I am aware that it is possible to just debug the DLL on its own and feed it arguments, but since there are many variables, I do not find it practical for debugging purposes.
Is there a way to debug a DLL that is separate from the Invoking Application as if it where a single solution file?