引发绕过所有异常处理程序(基于帧或矢量)的异常。引发此异常将终止应用程序并调用Windows错误报告(如果Windows错误报告正在运行)。
原型:
VOID WINAPI RaiseFailFastException( __in_opt PEXCEPTION_RECORD pExceptionRecord, __in_opt PCONTEXT pContextRecord, __in DWORD dwFlags );
参数:
Value | Meaning |
---|---|
FAIL_FAST_GENERATE_EXCEPTION_ADDRESS 0x1 |
Causes RaiseFailFastException to set the ExceptionAddress of EXCEPTION_RECORD to the return address of this function (the next instruction in the caller after the call to RaiseFailFastException). This function will set the exception address only if ExceptionAddress is NULL. |
FAIL_FAST_NO_HARD_ERROR_DLG 0x2 |
If the Windows Error Report service is not running when an unhandled exception occurs, a message box is diplayed to the user that identifies the address where the exception occurred. To prevent the message box from being displayed to the user, and to fail silently, set this flag. |
返回值:无
支持环境:
Minimum supported client | Windows 7 |
Minimum supported server | Windows Server 2008 R2 |
Header | Winbase.h (include Windows.h) |
Library | Kernel32.lib |
DLL | Kernel32.dll |
原文:https://www.cnblogs.com/yilang/p/11822080.html