As many of you know, I have been working on some error-handling routines, and just about have it, but the latest problem I have is the SDK equivalent for "RESUME NEXT"
The Docs say that
But that equates to a "RESUME"
I tried modifying the address of the error, but did not work. Am I going about it the wrong way??? or does anyone have code that can show me how to correctly continue execution, but at the line after the line that caused the problem???
The Docs say that
"EXCEPTION_CONTINUE_EXECUTION" = Return from UnhandledExceptionFilter and continue execution from the point of the exception. Note that the filter function is free to modify the continuation state by modifying the exception information supplied through its LPEXCEPTION_POINTERS parameter.
I tried modifying the address of the error, but did not work. Am I going about it the wrong way??? or does anyone have code that can show me how to correctly continue execution, but at the line after the line that caused the problem???
Comment