My Delphi module uses a C++ DLL function. While debugging in the Delphi IDE, I need to step into a C++ function in Visual C++. How can I do it?
2 Answers
What you ask for is not possible. Only one debugger can be attached to the process at a time, so while Delphi is stepping through the Delphi module, Visual Studio cannot debug the DLL.
Your only hope is if you have C++Builder installed. Then you can let it debug both the Delphi module and the DLL from within a single IDE instance.