I currently capture MiniDumps of unhandled exceptions using SetUnhandledExceptionFilter however at times I am getting ‘R6025: pure virtual function’.
I understand how a pure virtual function call happens I am just wondering if it is possible to capture them so I can create a MiniDump at that point.
If you want to catch all crashes you have to do more than just: SetUnhandledExceptionFilter
I would also set the abort handler, the purecall handler, unexpected, terminate, and invalid parameter handler.
And in your main put this:
The above will send all crashes to your unhandled exception handler.