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

WerRegisterMemoryBlock

関数
ダンプに含めるメモリブロックをWERに登録する。
DLLKERNEL32.dll呼出規約winapi対応OSWindows Vista 以降

シグネチャ

// KERNEL32.dll
#include <windows.h>

HRESULT WerRegisterMemoryBlock(
    void* pvAddress,
    DWORD dwSize
);

パラメーター

名前方向説明
pvAddressvoid*inクラッシュ時のダンプへ含めるメモリブロックの先頭アドレス。
dwSizeDWORDin登録するメモリブロックのサイズ(バイト)。

戻り値の型: HRESULT

各言語での呼び出し定義

// KERNEL32.dll
#include <windows.h>

HRESULT WerRegisterMemoryBlock(
    void* pvAddress,
    DWORD dwSize
);
[DllImport("KERNEL32.dll", ExactSpelling = true)]
static extern int WerRegisterMemoryBlock(
    IntPtr pvAddress,   // void*
    uint dwSize   // DWORD
);
<DllImport("KERNEL32.dll", ExactSpelling:=True)>
Public Shared Function WerRegisterMemoryBlock(
    pvAddress As IntPtr,   ' void*
    dwSize As UInteger   ' DWORD
) As Integer
End Function
' pvAddress : void*
' dwSize : DWORD
Declare PtrSafe Function WerRegisterMemoryBlock Lib "kernel32" ( _
    ByVal pvAddress As LongPtr, _
    ByVal dwSize As Long) As Long
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。
import ctypes
from ctypes import wintypes

WerRegisterMemoryBlock = ctypes.windll.kernel32.WerRegisterMemoryBlock
WerRegisterMemoryBlock.restype = ctypes.c_int
WerRegisterMemoryBlock.argtypes = [
    ctypes.POINTER(None),  # pvAddress : void*
    wintypes.DWORD,  # dwSize : DWORD
]
require 'fiddle'
require 'fiddle/import'

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

var (
	kernel32 = windows.NewLazySystemDLL("KERNEL32.dll")
	procWerRegisterMemoryBlock = kernel32.NewProc("WerRegisterMemoryBlock")
)

// pvAddress (void*), dwSize (DWORD)
r1, _, err := procWerRegisterMemoryBlock.Call(
	uintptr(pvAddress),
	uintptr(dwSize),
)
_ = err  // syscall.Errno (valid when the call sets last-error)
_ = r1   // HRESULT
function WerRegisterMemoryBlock(
  pvAddress: Pointer;   // void*
  dwSize: DWORD   // DWORD
): Integer; stdcall;
  external 'KERNEL32.dll' name 'WerRegisterMemoryBlock';
result := DllCall("KERNEL32\WerRegisterMemoryBlock"
    , "Ptr", pvAddress   ; void*
    , "UInt", dwSize   ; DWORD
    , "Int")   ; return: HRESULT
●WerRegisterMemoryBlock(pvAddress, dwSize) = DLL("KERNEL32.dll", "int WerRegisterMemoryBlock(void*, dword)")
# 呼び出し: WerRegisterMemoryBlock(pvAddress, dwSize)
# pvAddress : void* -> "void*"
# dwSize : DWORD -> "dword"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。
const std = @import("std");

extern "kernel32" fn WerRegisterMemoryBlock(
    pvAddress: ?*anyopaque, // void*
    dwSize: u32 // DWORD
) callconv(std.os.windows.WINAPI) i32;
proc WerRegisterMemoryBlock(
    pvAddress: pointer,  # void*
    dwSize: uint32  # DWORD
): int32 {.importc: "WerRegisterMemoryBlock", stdcall, dynlib: "KERNEL32.dll".}
pragma(lib, "kernel32");
extern(Windows)
int WerRegisterMemoryBlock(
    void* pvAddress,   // void*
    uint dwSize   // DWORD
);
ccall((:WerRegisterMemoryBlock, "KERNEL32.dll"), stdcall, Int32,
      (Ptr{Cvoid}, UInt32),
      pvAddress, dwSize)
# pvAddress : void* -> Ptr{Cvoid}
# dwSize : DWORD -> UInt32
# stdcall は 32bit のみ意味を持つ(x64 では無視)。
local ffi = require("ffi")
ffi.cdef[[
int32_t WerRegisterMemoryBlock(
    void* pvAddress,
    uint32_t dwSize);
]]
local kernel32 = ffi.load("kernel32")
-- kernel32.WerRegisterMemoryBlock(pvAddress, dwSize)
-- pvAddress : void*
-- dwSize : DWORD
-- 構造体/GUIDへのポインタは cdef が通るよう void* で表記(実型は各引数コメント参照)。値渡し構造体・enum は対応する typedef を cdef に追加すること。
const koffi = require('koffi');
const lib = koffi.load('KERNEL32.dll');
const WerRegisterMemoryBlock = lib.func('__stdcall', 'WerRegisterMemoryBlock', 'int32_t', ['void *', 'uint32_t']);
// WerRegisterMemoryBlock(pvAddress, dwSize)
// pvAddress : void* -> 'void *'
// dwSize : DWORD -> 'uint32_t'
// 出力ポインタは koffi.out(...) で包む。構造体は koffi.struct で定義。
const lib = Deno.dlopen("KERNEL32.dll", {
  WerRegisterMemoryBlock: { parameters: ["pointer", "u32"], result: "i32" },
});
// lib.symbols.WerRegisterMemoryBlock(pvAddress, dwSize)
// pvAddress : void* -> "pointer"
// dwSize : DWORD -> "u32"
// 文字列引数は "buffer"(NUL 終端のバイト列を Uint8Array で渡す)。
// 値渡し構造体は { struct: [ ...field types... ] } を使用。
<?php
$ffi = FFI::cdef(<<<C
int32_t WerRegisterMemoryBlock(
    void* pvAddress,
    uint32_t dwSize);
C, "KERNEL32.dll");
// $ffi->WerRegisterMemoryBlock(pvAddress, dwSize);
// pvAddress : void*
// dwSize : DWORD
// 構造体/GUIDへのポインタは cdef が通るよう void* で表記(実型は各引数コメント参照)。値渡し構造体・enum は対応する typedef を cdef に追加すること。
// WINAPI(stdcall): x64 では呼出規約が統一されるため問題なし。x86 では __stdcall 対応のラッパが必要な場合あり。
import com.sun.jna.*;
import com.sun.jna.ptr.*;
import com.sun.jna.win32.StdCallLibrary;
import com.sun.jna.win32.W32APIOptions;

public interface Kernel32 extends StdCallLibrary {
    Kernel32 INSTANCE = Native.load("kernel32", Kernel32.class);
    int WerRegisterMemoryBlock(
        Pointer pvAddress,   // void*
        int dwSize   // DWORD
    );
}
@[Link("kernel32")]
lib LibKERNEL32
  fun WerRegisterMemoryBlock = WerRegisterMemoryBlock(
    pvAddress : Void*,   # void*
    dwSize : UInt32   # DWORD
  ) : Int32
end
# 構造体/GUID/enum は lib 内に対応する型定義が必要。
# 呼出規約: x64 は規約統一のため OK。x86(32bit)は WINAPI=stdcall だが Crystal の fun に stdcall 付与構文がなく非対応。
import 'dart:ffi';
import 'package:ffi/ffi.dart';

typedef WerRegisterMemoryBlockNative = Int32 Function(Pointer<Void>, Uint32);
typedef WerRegisterMemoryBlockDart = int Function(Pointer<Void>, int);
final WerRegisterMemoryBlock = DynamicLibrary.open('KERNEL32.dll')
    .lookupFunction<WerRegisterMemoryBlockNative, WerRegisterMemoryBlockDart>('WerRegisterMemoryBlock');
// pvAddress : void* -> Pointer<Void>
// dwSize : DWORD -> Uint32
// 文字列は package:ffi の "...".toNativeUtf16()/toNativeUtf8() で変換。
{$mode objfpc}{$H+}
function WerRegisterMemoryBlock(
  pvAddress: Pointer;   // void*
  dwSize: DWORD   // DWORD
): Integer; stdcall;
  external 'KERNEL32.dll' name 'WerRegisterMemoryBlock';
import Foreign
import Foreign.C.Types
import Foreign.C.String

foreign import stdcall safe "WerRegisterMemoryBlock"
  c_WerRegisterMemoryBlock :: Ptr () -> Word32 -> IO Int32
-- pvAddress : void* -> Ptr ()
-- dwSize : DWORD -> Word32
-- 要 GHC(Windows)。stdcall は x64 では ccall として扱われる。ブロックする API は safe 呼び出し推奨。
open Ctypes
open Foreign

let werregistermemoryblock =
  foreign "WerRegisterMemoryBlock"
    ((ptr void) @-> uint32_t @-> returning int32_t)
(* pvAddress : void* -> (ptr void) *)
(* dwSize : DWORD -> uint32_t *)
(* foreign は cdecl 前提。x64 Windows では WINAPI と一致。構造体は ctypes structure を定義のこと。 *)
(cffi:define-foreign-library kernel32 (t "KERNEL32.dll"))
(cffi:use-foreign-library kernel32)

(cffi:defcfun ("WerRegisterMemoryBlock" wer-register-memory-block :convention :stdcall) :int32
  (pv-address :pointer)   ; void*
  (dw-size :uint32))   ; DWORD
; isize/usize(INT_PTR/SIZE_T)は x64 前提で :int64/:uint64。x86 では :int32/:uint32。
use Win32::API;
my $WerRegisterMemoryBlock = Win32::API::More->new('KERNEL32',
    'int WerRegisterMemoryBlock(LPVOID pvAddress, DWORD dwSize)');
# my $ret = $WerRegisterMemoryBlock->Call($pvAddress, $dwSize);
# pvAddress : void* -> LPVOID
# dwSize : DWORD -> DWORD
# 値渡し構造体は pack() した文字列、または Win32::API::Struct を使用。