The PassExceptionToDebuggee method of the IRemoteThreadEx interface is used to control how exceptions are handled during an ExceptionEventEx call. If this method is called with FALSE as its parameter, the Microsoft VM ignores the exception that just occurred, hiding it from the process being debugged. If this method is called with TRUE as its parameter, the Microsoft VM passes the exception that just occurred to the debuggee, as usual. This method should only be called during an ExceptionEventEx callback.
HRESULT PassExceptionToDebuggee(BOOL fPass)
[in] fPass | Set to FALSE to have the Microsoft VM ignore the exception that just occurred; set to TRUE to have exception handling occur normally. |
S_OK Success.