ホーム › System.Com › IIDFromString
IIDFromString
関数文字列形式の値を解析してインターフェースIDに変換する。
シグネチャ
// OLE32.dll
#include <windows.h>
HRESULT IIDFromString(
LPCWSTR lpsz,
GUID* lpiid
);パラメーター
| 名前 | 型 | 方向 | 説明 |
|---|---|---|---|
| lpsz | LPCWSTR | in | IID の文字列表現へのポインター、または NULL。 |
| lpiid | GUID* | out | 戻り時に、要求された IID へのポインター。 |
戻り値の型: HRESULT
公式ドキュメント
StringFromIID 関数によって生成された文字列を、元のインターフェイス識別子 (IID) に変換します。
戻り値
この関数は、標準的な戻り値 E_INVALIDARG、E_OUTOFMEMORY、および S_OK を返すことがあります。
解説(Remarks)
この関数は、異なるインターフェイス識別子が常に異なる文字列に変換されることを保証する方法で、インターフェイス識別子を変換します。
IID の形式は {xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx} です。
NULL を渡すと、GUID_NULL 値になります。
出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
各言語での呼び出し定義
// OLE32.dll
#include <windows.h>
HRESULT IIDFromString(
LPCWSTR lpsz,
GUID* lpiid
);[DllImport("OLE32.dll", ExactSpelling = true)]
static extern int IIDFromString(
[MarshalAs(UnmanagedType.LPWStr)] string lpsz, // LPCWSTR
out Guid lpiid // GUID* out
);<DllImport("OLE32.dll", ExactSpelling:=True)>
Public Shared Function IIDFromString(
<MarshalAs(UnmanagedType.LPWStr)> lpsz As String, ' LPCWSTR
<Out> ByRef lpiid As Guid ' GUID* out
) As Integer
End Function' lpsz : LPCWSTR
' lpiid : GUID* out
Declare PtrSafe Function IIDFromString Lib "ole32" ( _
ByVal lpsz As LongPtr, _
ByVal lpiid As LongPtr) As Long
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。import ctypes
from ctypes import wintypes
IIDFromString = ctypes.windll.ole32.IIDFromString
IIDFromString.restype = ctypes.c_int
IIDFromString.argtypes = [
wintypes.LPCWSTR, # lpsz : LPCWSTR
ctypes.c_void_p, # lpiid : GUID* out
]require 'fiddle'
require 'fiddle/import'
lib = Fiddle.dlopen('OLE32.dll')
IIDFromString = Fiddle::Function.new(
lib['IIDFromString'],
[
Fiddle::TYPE_VOIDP, # lpsz : LPCWSTR
Fiddle::TYPE_VOIDP, # lpiid : GUID* out
],
Fiddle::TYPE_INT)#[link(name = "ole32")]
extern "system" {
fn IIDFromString(
lpsz: *const u16, // LPCWSTR
lpiid: *mut GUID // GUID* out
) -> i32;
}
// crates: windows-sys provides ready-made bindings for this API.$sig = @"
[DllImport("OLE32.dll")]
public static extern int IIDFromString([MarshalAs(UnmanagedType.LPWStr)] string lpsz, out Guid lpiid);
"@
$api = Add-Type -MemberDefinition $sig -Name 'OLE32_IIDFromString' -Namespace Win32 -PassThru
# $api::IIDFromString(lpsz, lpiid)#uselib "OLE32.dll"
#func global IIDFromString "IIDFromString" sptr, sptr
; IIDFromString lpsz, varptr(lpiid) ; 戻り値は stat
; lpsz : LPCWSTR -> "sptr"
; lpiid : GUID* out -> "sptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。出力引数:
#uselib "OLE32.dll" #cfunc global IIDFromString "IIDFromString" wstr, var ; res = IIDFromString(lpsz, lpiid) ; lpsz : LPCWSTR -> "wstr" ; lpiid : GUID* out -> "var" ; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。#uselib "OLE32.dll" #cfunc global IIDFromString "IIDFromString" wstr, sptr ; res = IIDFromString(lpsz, varptr(lpiid)) ; lpsz : LPCWSTR -> "wstr" ; lpiid : GUID* out -> "sptr" ; ※出力/バッファ引数はポインタ方式(token=sptr / 呼び出しは varptr(変数))。
出力引数:
; HRESULT IIDFromString(LPCWSTR lpsz, GUID* lpiid) #uselib "OLE32.dll" #cfunc global IIDFromString "IIDFromString" wstr, var ; res = IIDFromString(lpsz, lpiid) ; lpsz : LPCWSTR -> "wstr" ; lpiid : GUID* out -> "var" ; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。; HRESULT IIDFromString(LPCWSTR lpsz, GUID* lpiid) #uselib "OLE32.dll" #cfunc global IIDFromString "IIDFromString" wstr, intptr ; res = IIDFromString(lpsz, varptr(lpiid)) ; lpsz : LPCWSTR -> "wstr" ; lpiid : GUID* out -> "intptr" ; ※出力/バッファ引数はポインタ方式(token=intptr / 呼び出しは varptr(変数))。
import (
"golang.org/x/sys/windows"
"unsafe"
)
var (
ole32 = windows.NewLazySystemDLL("OLE32.dll")
procIIDFromString = ole32.NewProc("IIDFromString")
)
// lpsz (LPCWSTR), lpiid (GUID* out)
r1, _, err := procIIDFromString.Call(
uintptr(unsafe.Pointer(windows.StringToUTF16Ptr(lpsz))),
uintptr(lpiid),
)
_ = err // syscall.Errno (valid when the call sets last-error)
_ = r1 // HRESULTfunction IIDFromString(
lpsz: PWideChar; // LPCWSTR
lpiid: PGUID // GUID* out
): Integer; stdcall;
external 'OLE32.dll' name 'IIDFromString';result := DllCall("OLE32\IIDFromString"
, "WStr", lpsz ; LPCWSTR
, "Ptr", lpiid ; GUID* out
, "Int") ; return: HRESULT●IIDFromString(lpsz, lpiid) = DLL("OLE32.dll", "int IIDFromString(char*, void*)")
# 呼び出し: IIDFromString(lpsz, lpiid)
# lpsz : LPCWSTR -> "char*"
# lpiid : GUID* out -> "void*"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。const std = @import("std");
extern "ole32" fn IIDFromString(
lpsz: [*c]const u16, // LPCWSTR
lpiid: [*c]GUID // GUID* out
) callconv(std.os.windows.WINAPI) i32;proc IIDFromString(
lpsz: WideCString, # LPCWSTR
lpiid: ptr GUID # GUID* out
): int32 {.importc: "IIDFromString", stdcall, dynlib: "OLE32.dll".}pragma(lib, "ole32");
extern(Windows)
int IIDFromString(
const(wchar)* lpsz, // LPCWSTR
GUID* lpiid // GUID* out
);ccall((:IIDFromString, "OLE32.dll"), stdcall, Int32,
(Cwstring, Ptr{GUID}),
lpsz, lpiid)
# lpsz : LPCWSTR -> Cwstring
# lpiid : GUID* out -> Ptr{GUID}
# stdcall は 32bit のみ意味を持つ(x64 では無視)。local ffi = require("ffi")
ffi.cdef[[
int32_t IIDFromString(
const uint16_t* lpsz,
void* lpiid);
]]
local ole32 = ffi.load("ole32")
-- ole32.IIDFromString(lpsz, lpiid)
-- lpsz : LPCWSTR
-- lpiid : GUID* out
-- 構造体/GUIDへのポインタは cdef が通るよう void* で表記(実型は各引数コメント参照)。値渡し構造体・enum は対応する typedef を cdef に追加すること。const koffi = require('koffi');
const lib = koffi.load('OLE32.dll');
const IIDFromString = lib.func('__stdcall', 'IIDFromString', 'int32_t', ['str16', 'void *']);
// IIDFromString(lpsz, lpiid)
// lpsz : LPCWSTR -> 'str16'
// lpiid : GUID* out -> 'void *'
// 出力ポインタは koffi.out(...) で包む。構造体は koffi.struct で定義。const lib = Deno.dlopen("OLE32.dll", {
IIDFromString: { parameters: ["buffer", "pointer"], result: "i32" },
});
// lib.symbols.IIDFromString(lpsz, lpiid)
// lpsz : LPCWSTR -> "buffer"
// lpiid : GUID* out -> "pointer"
// 文字列引数は "buffer"(NUL 終端のバイト列を Uint8Array で渡す)。
// 値渡し構造体は { struct: [ ...field types... ] } を使用。<?php
$ffi = FFI::cdef(<<<C
int32_t IIDFromString(
const uint16_t* lpsz,
void* lpiid);
C, "OLE32.dll");
// $ffi->IIDFromString(lpsz, lpiid);
// lpsz : LPCWSTR
// lpiid : GUID* out
// 構造体/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 IIDFromString(
WString lpsz, // LPCWSTR
Pointer lpiid // GUID* out
);
}@[Link("ole32")]
lib LibOLE32
fun IIDFromString = IIDFromString(
lpsz : UInt16*, # LPCWSTR
lpiid : GUID* # GUID* out
) : Int32
end
# 構造体/GUID/enum は lib 内に対応する型定義が必要。
# 呼出規約: x64 は規約統一のため OK。x86(32bit)は WINAPI=stdcall だが Crystal の fun に stdcall 付与構文がなく非対応。import 'dart:ffi';
import 'package:ffi/ffi.dart';
typedef IIDFromStringNative = Int32 Function(Pointer<Utf16>, Pointer<Void>);
typedef IIDFromStringDart = int Function(Pointer<Utf16>, Pointer<Void>);
final IIDFromString = DynamicLibrary.open('OLE32.dll')
.lookupFunction<IIDFromStringNative, IIDFromStringDart>('IIDFromString');
// lpsz : LPCWSTR -> Pointer<Utf16>
// lpiid : GUID* out -> Pointer<Void>
// 文字列は package:ffi の "...".toNativeUtf16()/toNativeUtf8() で変換。{$mode objfpc}{$H+}
function IIDFromString(
lpsz: PWideChar; // LPCWSTR
lpiid: PGUID // GUID* out
): Integer; stdcall;
external 'OLE32.dll' name 'IIDFromString';import Foreign
import Foreign.C.Types
import Foreign.C.String
foreign import stdcall safe "IIDFromString"
c_IIDFromString :: CWString -> Ptr () -> IO Int32
-- lpsz : LPCWSTR -> CWString
-- lpiid : GUID* out -> Ptr ()
-- 要 GHC(Windows)。stdcall は x64 では ccall として扱われる。ブロックする API は safe 呼び出し推奨。open Ctypes
open Foreign
let iidfromstring =
foreign "IIDFromString"
((ptr uint16_t) @-> (ptr void) @-> returning int32_t)
(* lpsz : LPCWSTR -> (ptr uint16_t) *)
(* lpiid : GUID* out -> (ptr void) *)
(* foreign は cdecl 前提。x64 Windows では WINAPI と一致。構造体は ctypes structure を定義のこと。 *)(cffi:define-foreign-library ole32 (t "OLE32.dll"))
(cffi:use-foreign-library ole32)
(cffi:defcfun ("IIDFromString" iidfrom-string :convention :stdcall) :int32
(lpsz (:string :encoding :utf-16le)) ; LPCWSTR
(lpiid :pointer)) ; GUID* out
; isize/usize(INT_PTR/SIZE_T)は x64 前提で :int64/:uint64。x86 では :int32/:uint32。use Win32::API;
my $IIDFromString = Win32::API::More->new('OLE32',
'int IIDFromString(LPCWSTR lpsz, LPVOID lpiid)');
# my $ret = $IIDFromString->Call($lpsz, $lpiid);
# lpsz : LPCWSTR -> LPCWSTR
# lpiid : GUID* out -> LPVOID
# 値渡し構造体は pack() した文字列、または Win32::API::Struct を使用。関連項目
公式の関連項目
- f StringFromIID — インターフェースIDを文字列形式に変換する。