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

RoReportFailedDelegate

関数
デリゲート呼び出しの失敗をエラー情報付きで報告する。
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 RoReportFailedDelegate(
    IUnknown* punkDelegate,
    IRestrictedErrorInfo* pRestrictedErrorInfo
);

パラメーター

名前方向
punkDelegateIUnknown*in
pRestrictedErrorInfoIRestrictedErrorInfo*in

戻り値の型: HRESULT

各言語での呼び出し定義

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

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

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

lib = Fiddle.dlopen('api-ms-win-core-winrt-error-l1-1-1.dll')
RoReportFailedDelegate = Fiddle::Function.new(
  lib['RoReportFailedDelegate'],
  [
    Fiddle::TYPE_VOIDP,  # punkDelegate : IUnknown*
    Fiddle::TYPE_VOIDP,  # pRestrictedErrorInfo : IRestrictedErrorInfo*
  ],
  Fiddle::TYPE_INT)
#[link(name = "api-ms-win-core-winrt-error-l1-1-1")]
extern "system" {
    fn RoReportFailedDelegate(
        punkDelegate: *mut core::ffi::c_void,  // IUnknown*
        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 RoReportFailedDelegate(IntPtr punkDelegate, IntPtr pRestrictedErrorInfo);
"@
$api = Add-Type -MemberDefinition $sig -Name 'api-ms-win-core-winrt-error-l1-1-1_RoReportFailedDelegate' -Namespace Win32 -PassThru
# $api::RoReportFailedDelegate(punkDelegate, pRestrictedErrorInfo)
#uselib "api-ms-win-core-winrt-error-l1-1-1.dll"
#func global RoReportFailedDelegate "RoReportFailedDelegate" sptr, sptr
; RoReportFailedDelegate punkDelegate, pRestrictedErrorInfo   ; 戻り値は stat
; punkDelegate : IUnknown* -> "sptr"
; pRestrictedErrorInfo : IRestrictedErrorInfo* -> "sptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。
#uselib "api-ms-win-core-winrt-error-l1-1-1.dll"
#cfunc global RoReportFailedDelegate "RoReportFailedDelegate" sptr, sptr
; res = RoReportFailedDelegate(punkDelegate, pRestrictedErrorInfo)
; punkDelegate : IUnknown* -> "sptr"
; pRestrictedErrorInfo : IRestrictedErrorInfo* -> "sptr"
; HRESULT RoReportFailedDelegate(IUnknown* punkDelegate, IRestrictedErrorInfo* pRestrictedErrorInfo)
#uselib "api-ms-win-core-winrt-error-l1-1-1.dll"
#cfunc global RoReportFailedDelegate "RoReportFailedDelegate" intptr, intptr
; res = RoReportFailedDelegate(punkDelegate, pRestrictedErrorInfo)
; punkDelegate : IUnknown* -> "intptr"
; 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")
	procRoReportFailedDelegate = api_ms_win_core_winrt_error_l1_1_1.NewProc("RoReportFailedDelegate")
)

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