AddVectoredExceptionHandler in Release
-
Does AddVectoredExceptionHandler only run in debug, I just rebuilt my code in Release and it entered the SEH routine when I comment it out I dont have a problem Thanks
-
-
This is the exception 0x4001000A This is a new exception Microsoft implemented in Windows 10 something to do with OutPutDebug String though I have that in program I check isdebuggerpresent so dont know why it was raised This is what I saw when googling
Quote:
Windows creates a new exception with RaiseException: DBG_PRINTEXCEPTION_WIDE_C (0x4001000A). This new exception code needs 4 parameters. For backwards compatibility it also requests the Ansi version of the string
This is what I added to my SEH handler
if (pExceptionPtrs->ExceptionRecord->ExceptionCode == 0x4001000A)
return EXCEPTION_CONTINUE_EXECUTION; -
This is the exception 0x4001000A This is a new exception Microsoft implemented in Windows 10 something to do with OutPutDebug String though I have that in program I check isdebuggerpresent so dont know why it was raised This is what I saw when googling
Quote:
Windows creates a new exception with RaiseException: DBG_PRINTEXCEPTION_WIDE_C (0x4001000A). This new exception code needs 4 parameters. For backwards compatibility it also requests the Ansi version of the string
This is what I added to my SEH handler
if (pExceptionPtrs->ExceptionRecord->ExceptionCode == 0x4001000A)
return EXCEPTION_CONTINUE_EXECUTION;