Plugins (C++): How to debug VFS-Plugin?

If I use _debugbreak(); or DebugBreak(); in my plugin, DOpus is displaying an error message, but I get not to the debugger. How to set breakpoints in the plugin?

Regards, Norbert

Assuming you're using Visual Studio:

Install the plugin inside of Opus and then attach the debugger to the Opus process (dopus.exe). You can then set breakpoints normally within your DLL's code as if you were debugging your own exe.

When you're doing you can detach the debugger from the process. (If you stop the debugger instead you will kill the Opus process.)

Thank you, I will try it.