Win32 API 日本語リファレンス
ホームSystem.WinRT › RoReportUnhandledError

RoReportUnhandledError

関数
未処理のWinRTエラーをシステムに報告する。
DLLapi-ms-win-core-winrt-error-l1-1-1.dll呼出規約winapi

シグネチャ

// api-ms-win-core-winrt-error-l1-1-1.dll
#include <windows.h>

HRESULT RoReportUnhandledError(
    IRestrictedErrorInfo* pRestrictedErrorInfo
);

パラメーター

名前方向
pRestrictedErrorInfoIRestrictedErrorInfo*in

戻り値の型: HRESULT

各言語での呼び出し定義

// api-ms-win-core-winrt-error-l1-1-1.dll
#include <windows.h>

HRESULT RoReportUnhandledError(
    IRestrictedErrorInfo* pRestrictedErrorInfo
);
[DllImport("api-ms-win-core-winrt-error-l1-1-1.dll", ExactSpelling = true)]
static extern int RoReportUnhandledError(
    IntPtr pRestrictedErrorInfo   // IRestrictedErrorInfo*
);
<DllImport("api-ms-win-core-winrt-error-l1-1-1.dll", ExactSpelling:=True)>
Public Shared Function RoReportUnhandledError(
    pRestrictedErrorInfo As IntPtr   ' IRestrictedErrorInfo*
) As Integer
End Function
' pRestrictedErrorInfo : IRestrictedErrorInfo*
Declare PtrSafe Function RoReportUnhandledError Lib "api-ms-win-core-winrt-error-l1-1-1" ( _
    ByVal pRestrictedErrorInfo As LongPtr) As Long
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。
import ctypes
from ctypes import wintypes

RoReportUnhandledError = ctypes.windll.LoadLibrary("api-ms-win-core-winrt-error-l1-1-1.dll").RoReportUnhandledError
RoReportUnhandledError.restype = ctypes.c_int
RoReportUnhandledError.argtypes = [
    ctypes.c_void_p,  # pRestrictedErrorInfo : IRestrictedErrorInfo*
]
require 'fiddle'
require 'fiddle/import'

lib = Fiddle.dlopen('api-ms-win-core-winrt-error-l1-1-1.dll')
RoReportUnhandledError = Fiddle::Function.new(
  lib['RoReportUnhandledError'],
  [
    Fiddle::TYPE_VOIDP,  # pRestrictedErrorInfo : IRestrictedErrorInfo*
  ],
  Fiddle::TYPE_INT)
#[link(name = "api-ms-win-core-winrt-error-l1-1-1")]
extern "system" {
    fn RoReportUnhandledError(
        pRestrictedErrorInfo: *mut core::ffi::c_void  // IRestrictedErrorInfo*
    ) -> i32;
}
// crates: windows-sys provides ready-made bindings for this API.
$sig = @"
[DllImport("api-ms-win-core-winrt-error-l1-1-1.dll")]
public static extern int RoReportUnhandledError(IntPtr pRestrictedErrorInfo);
"@
$api = Add-Type -MemberDefinition $sig -Name 'api-ms-win-core-winrt-error-l1-1-1_RoReportUnhandledError' -Namespace Win32 -PassThru
# $api::RoReportUnhandledError(pRestrictedErrorInfo)
#uselib "api-ms-win-core-winrt-error-l1-1-1.dll"
#func global RoReportUnhandledError "RoReportUnhandledError" sptr
; RoReportUnhandledError pRestrictedErrorInfo   ; 戻り値は stat
; pRestrictedErrorInfo : IRestrictedErrorInfo* -> "sptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。
#uselib "api-ms-win-core-winrt-error-l1-1-1.dll"
#cfunc global RoReportUnhandledError "RoReportUnhandledError" sptr
; res = RoReportUnhandledError(pRestrictedErrorInfo)
; pRestrictedErrorInfo : IRestrictedErrorInfo* -> "sptr"
; HRESULT RoReportUnhandledError(IRestrictedErrorInfo* pRestrictedErrorInfo)
#uselib "api-ms-win-core-winrt-error-l1-1-1.dll"
#cfunc global RoReportUnhandledError "RoReportUnhandledError" intptr
; res = RoReportUnhandledError(pRestrictedErrorInfo)
; pRestrictedErrorInfo : IRestrictedErrorInfo* -> "intptr"
import (
	"golang.org/x/sys/windows"
	"unsafe"
)

var (
	api_ms_win_core_winrt_error_l1_1_1 = windows.NewLazySystemDLL("api-ms-win-core-winrt-error-l1-1-1.dll")
	procRoReportUnhandledError = api_ms_win_core_winrt_error_l1_1_1.NewProc("RoReportUnhandledError")
)

// pRestrictedErrorInfo (IRestrictedErrorInfo*)
r1, _, err := procRoReportUnhandledError.Call(
	uintptr(pRestrictedErrorInfo),
)
_ = err  // syscall.Errno (valid when the call sets last-error)
_ = r1   // HRESULT
function RoReportUnhandledError(
  pRestrictedErrorInfo: Pointer   // IRestrictedErrorInfo*
): Integer; stdcall;
  external 'api-ms-win-core-winrt-error-l1-1-1.dll' name 'RoReportUnhandledError';
result := DllCall("api-ms-win-core-winrt-error-l1-1-1\RoReportUnhandledError"
    , "Ptr", pRestrictedErrorInfo   ; IRestrictedErrorInfo*
    , "Int")   ; return: HRESULT
●RoReportUnhandledError(pRestrictedErrorInfo) = DLL("api-ms-win-core-winrt-error-l1-1-1.dll", "int RoReportUnhandledError(void*)")
# 呼び出し: RoReportUnhandledError(pRestrictedErrorInfo)
# pRestrictedErrorInfo : IRestrictedErrorInfo* -> "void*"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。