RoFailFastWithErrorContextInternal2 函数

在当前进程中引发非连续异常,还允许将操作系统 (OS) 未捕获的其他错误上下文包括在内。

语法

void WINAPI RoFailFastWithErrorContextInternal2(
  HRESULT hrError,
  ULONG cStowedExceptions,
  _In_reads_opt_(cStowedExceptions) PSTOWED_EXCEPTION_INFORMATION_V2 aStowedExceptionPointers[]
);

参数

hrError

类型: HRESULT

与当前错误关联的 HRESULT 。 对于 hrError 的任何值,将引发异常。

cStowedExceptions

类型: ULONG

aStowedExceptionPointers 数组中的元素数。

aStowedExceptionPointers

类型: PSTOWED_EXCEPTION_INFORMATION_V2[]

指向 STOWED_EXCEPTION_INFORMATION_V2 结构的指针数组。 每个结构都包含描述已存储异常的信息。 然后将这些结构中的信息连同平台捕获的已存储异常信息一起提交到Windows 错误报告 (WER) 。

返回值

此函数不返回值。

备注

RoFailFastWithErrorContextInternal2 不与导入库或头文件相关联。 可以先使用 LoadLibrary 函数 (加载 ComBase.dll) ,然后调用 GetProcAddress 函数来检索 RoFailFastWithErrorContextInternal2 的地址。

有关详细信息,请参阅 RoFailFastWithErrorContext 函数

要求

   
目标平台 Windows
标头 空值
Library 空值
DLL ComBase.dll

另请参阅