I’m trying to use the Managed Debugging API from a native C++ program.
I read that it’s composed from COM components so I need to use the CoCreateInstance method.
I did that but I get the ERROR_NOT_FOUND system error which I guess is telling me that it’s not registered.
The problem is that I can’t find a corDebug DLL or anything else I think is related…
Which DLLs do I need to register?
(also I’d expect it to be registered when the framework is installed. weird, isn’t it?)
You may also check http://lowleveldesign.wordpress.com/2010/10/11/writing-a-net-debugger-part-1-starting-the-debugging-session/ to find an example of usage for those interfaces.