ホーム › System.Com.Marshal › CoMarshalHresult
CoMarshalHresult
関数HRESULT値をストリームへマーシャリングして書き込む。
シグネチャ
// OLE32.dll
#include <windows.h>
HRESULT CoMarshalHresult(
IStream* pstm,
HRESULT hresult
);パラメーター
| 名前 | 型 | 方向 | 説明 |
|---|---|---|---|
| pstm | IStream* | in | HRESULT値を書き込む先のIStreamへのポインタ。 |
| hresult | HRESULT | in | ストリームにマーシャルするHRESULT値。リモート呼び出しの結果コード等。 |
戻り値の型: HRESULT
各言語での呼び出し定義
// OLE32.dll
#include <windows.h>
HRESULT CoMarshalHresult(
IStream* pstm,
HRESULT hresult
);[DllImport("OLE32.dll", ExactSpelling = true)]
static extern int CoMarshalHresult(
IntPtr pstm, // IStream*
int hresult // HRESULT
);<DllImport("OLE32.dll", ExactSpelling:=True)>
Public Shared Function CoMarshalHresult(
pstm As IntPtr, ' IStream*
hresult As Integer ' HRESULT
) As Integer
End Function' pstm : IStream*
' hresult : HRESULT
Declare PtrSafe Function CoMarshalHresult Lib "ole32" ( _
ByVal pstm As LongPtr, _
ByVal hresult As Long) As Long
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。import ctypes
from ctypes import wintypes
CoMarshalHresult = ctypes.windll.ole32.CoMarshalHresult
CoMarshalHresult.restype = ctypes.c_int
CoMarshalHresult.argtypes = [
ctypes.c_void_p, # pstm : IStream*
ctypes.c_int, # hresult : HRESULT
]require 'fiddle'
require 'fiddle/import'
lib = Fiddle.dlopen('OLE32.dll')
CoMarshalHresult = Fiddle::Function.new(
lib['CoMarshalHresult'],
[
Fiddle::TYPE_VOIDP, # pstm : IStream*
Fiddle::TYPE_INT, # hresult : HRESULT
],
Fiddle::TYPE_INT)#[link(name = "ole32")]
extern "system" {
fn CoMarshalHresult(
pstm: *mut core::ffi::c_void, // IStream*
hresult: i32 // HRESULT
) -> i32;
}
// crates: windows-sys provides ready-made bindings for this API.$sig = @"
[DllImport("OLE32.dll")]
public static extern int CoMarshalHresult(IntPtr pstm, int hresult);
"@
$api = Add-Type -MemberDefinition $sig -Name 'OLE32_CoMarshalHresult' -Namespace Win32 -PassThru
# $api::CoMarshalHresult(pstm, hresult)#uselib "OLE32.dll"
#func global CoMarshalHresult "CoMarshalHresult" sptr, sptr
; CoMarshalHresult pstm, hresult ; 戻り値は stat
; pstm : IStream* -> "sptr"
; hresult : HRESULT -> "sptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。#uselib "OLE32.dll"
#cfunc global CoMarshalHresult "CoMarshalHresult" sptr, int
; res = CoMarshalHresult(pstm, hresult)
; pstm : IStream* -> "sptr"
; hresult : HRESULT -> "int"; HRESULT CoMarshalHresult(IStream* pstm, HRESULT hresult)
#uselib "OLE32.dll"
#cfunc global CoMarshalHresult "CoMarshalHresult" intptr, int
; res = CoMarshalHresult(pstm, hresult)
; pstm : IStream* -> "intptr"
; hresult : HRESULT -> "int"import (
"golang.org/x/sys/windows"
"unsafe"
)
var (
ole32 = windows.NewLazySystemDLL("OLE32.dll")
procCoMarshalHresult = ole32.NewProc("CoMarshalHresult")
)
// pstm (IStream*), hresult (HRESULT)
r1, _, err := procCoMarshalHresult.Call(
uintptr(pstm),
uintptr(hresult),
)
_ = err // syscall.Errno (valid when the call sets last-error)
_ = r1 // HRESULTfunction CoMarshalHresult(
pstm: Pointer; // IStream*
hresult: Integer // HRESULT
): Integer; stdcall;
external 'OLE32.dll' name 'CoMarshalHresult';result := DllCall("OLE32\CoMarshalHresult"
, "Ptr", pstm ; IStream*
, "Int", hresult ; HRESULT
, "Int") ; return: HRESULT●CoMarshalHresult(pstm, hresult) = DLL("OLE32.dll", "int CoMarshalHresult(void*, int)")
# 呼び出し: CoMarshalHresult(pstm, hresult)
# pstm : IStream* -> "void*"
# hresult : HRESULT -> "int"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。const std = @import("std");
extern "ole32" fn CoMarshalHresult(
pstm: ?*anyopaque, // IStream*
hresult: i32 // HRESULT
) callconv(std.os.windows.WINAPI) i32;proc CoMarshalHresult(
pstm: pointer, # IStream*
hresult: int32 # HRESULT
): int32 {.importc: "CoMarshalHresult", stdcall, dynlib: "OLE32.dll".}pragma(lib, "ole32");
extern(Windows)
int CoMarshalHresult(
void* pstm, // IStream*
int hresult // HRESULT
);ccall((:CoMarshalHresult, "OLE32.dll"), stdcall, Int32,
(Ptr{Cvoid}, Int32),
pstm, hresult)
# pstm : IStream* -> Ptr{Cvoid}
# hresult : HRESULT -> Int32
# stdcall は 32bit のみ意味を持つ(x64 では無視)。local ffi = require("ffi")
ffi.cdef[[
int32_t CoMarshalHresult(
void* pstm,
int32_t hresult);
]]
local ole32 = ffi.load("ole32")
-- ole32.CoMarshalHresult(pstm, hresult)
-- pstm : IStream*
-- hresult : HRESULT
-- 構造体/GUIDへのポインタは cdef が通るよう void* で表記(実型は各引数コメント参照)。値渡し構造体・enum は対応する typedef を cdef に追加すること。const koffi = require('koffi');
const lib = koffi.load('OLE32.dll');
const CoMarshalHresult = lib.func('__stdcall', 'CoMarshalHresult', 'int32_t', ['void *', 'int32_t']);
// CoMarshalHresult(pstm, hresult)
// pstm : IStream* -> 'void *'
// hresult : HRESULT -> 'int32_t'
// 出力ポインタは koffi.out(...) で包む。構造体は koffi.struct で定義。const lib = Deno.dlopen("OLE32.dll", {
CoMarshalHresult: { parameters: ["pointer", "i32"], result: "i32" },
});
// lib.symbols.CoMarshalHresult(pstm, hresult)
// pstm : IStream* -> "pointer"
// hresult : HRESULT -> "i32"
// 文字列引数は "buffer"(NUL 終端のバイト列を Uint8Array で渡す)。
// 値渡し構造体は { struct: [ ...field types... ] } を使用。<?php
$ffi = FFI::cdef(<<<C
int32_t CoMarshalHresult(
void* pstm,
int32_t hresult);
C, "OLE32.dll");
// $ffi->CoMarshalHresult(pstm, hresult);
// pstm : IStream*
// hresult : HRESULT
// 構造体/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 Ole32 extends StdCallLibrary {
Ole32 INSTANCE = Native.load("ole32", Ole32.class);
int CoMarshalHresult(
Pointer pstm, // IStream*
int hresult // HRESULT
);
}@[Link("ole32")]
lib LibOLE32
fun CoMarshalHresult = CoMarshalHresult(
pstm : Void*, # IStream*
hresult : Int32 # HRESULT
) : Int32
end
# 構造体/GUID/enum は lib 内に対応する型定義が必要。
# 呼出規約: x64 は規約統一のため OK。x86(32bit)は WINAPI=stdcall だが Crystal の fun に stdcall 付与構文がなく非対応。import 'dart:ffi';
import 'package:ffi/ffi.dart';
typedef CoMarshalHresultNative = Int32 Function(Pointer<Void>, Int32);
typedef CoMarshalHresultDart = int Function(Pointer<Void>, int);
final CoMarshalHresult = DynamicLibrary.open('OLE32.dll')
.lookupFunction<CoMarshalHresultNative, CoMarshalHresultDart>('CoMarshalHresult');
// pstm : IStream* -> Pointer<Void>
// hresult : HRESULT -> Int32
// 文字列は package:ffi の "...".toNativeUtf16()/toNativeUtf8() で変換。{$mode objfpc}{$H+}
function CoMarshalHresult(
pstm: Pointer; // IStream*
hresult: Integer // HRESULT
): Integer; stdcall;
external 'OLE32.dll' name 'CoMarshalHresult';import Foreign
import Foreign.C.Types
import Foreign.C.String
foreign import stdcall safe "CoMarshalHresult"
c_CoMarshalHresult :: Ptr () -> Int32 -> IO Int32
-- pstm : IStream* -> Ptr ()
-- hresult : HRESULT -> Int32
-- 要 GHC(Windows)。stdcall は x64 では ccall として扱われる。ブロックする API は safe 呼び出し推奨。open Ctypes
open Foreign
let comarshalhresult =
foreign "CoMarshalHresult"
((ptr void) @-> int32_t @-> returning int32_t)
(* pstm : IStream* -> (ptr void) *)
(* hresult : HRESULT -> int32_t *)
(* foreign は cdecl 前提。x64 Windows では WINAPI と一致。構造体は ctypes structure を定義のこと。 *)(cffi:define-foreign-library ole32 (t "OLE32.dll"))
(cffi:use-foreign-library ole32)
(cffi:defcfun ("CoMarshalHresult" co-marshal-hresult :convention :stdcall) :int32
(pstm :pointer) ; IStream*
(hresult :int32)) ; HRESULT
; isize/usize(INT_PTR/SIZE_T)は x64 前提で :int64/:uint64。x86 では :int32/:uint32。use Win32::API;
my $CoMarshalHresult = Win32::API::More->new('OLE32',
'int CoMarshalHresult(LPVOID pstm, int hresult)');
# my $ret = $CoMarshalHresult->Call($pstm, $hresult);
# pstm : IStream* -> LPVOID
# hresult : HRESULT -> int
# 値渡し構造体は pack() した文字列、または Win32::API::Struct を使用。関連項目
使用する型