I have an application for which I have no code, and a dll for which I have code. I need to be able to debug a DLL, but I do not have a source for exe, how can I do this?
The dll code is mfc C ++; I believe the main application is the same.
I tried to execute the "install the target application" transaction, where I installed the application from which the dll will be called, and the application is caused by a terrible, terrible death when this method is called. I do not know if the error is related to this dll or to the executable for this behavior, and this is just one of many things that I would like to solve.
I think there must be some kind of call to let the dll rotate endlessly until a debugger joins the process, after which I have to debug the dll by joining the process. Does this make sense? Is there a better way to do this?
source
share