Win32 API 日本語リファレンス
ホームGlobalization › ucnv_openStandardNames

ucnv_openStandardNames

関数
指定規格に属するコンバーター名を列挙する列挙子を開く。
DLLicuuc.dll呼出規約cdecl

シグネチャ

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

UEnumeration* ucnv_openStandardNames(
    LPCSTR convName,
    LPCSTR standard,
    UErrorCode* pErrorCode
);

パラメーター

名前方向
convNameLPCSTRin
standardLPCSTRin
pErrorCodeUErrorCode*inout

戻り値の型: UEnumeration*

各言語での呼び出し定義

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

UEnumeration* ucnv_openStandardNames(
    LPCSTR convName,
    LPCSTR standard,
    UErrorCode* pErrorCode
);
[DllImport("icuuc.dll", ExactSpelling = true, CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr ucnv_openStandardNames(
    [MarshalAs(UnmanagedType.LPStr)] string convName,   // LPCSTR
    [MarshalAs(UnmanagedType.LPStr)] string standard,   // LPCSTR
    ref int pErrorCode   // UErrorCode* in/out
);
<DllImport("icuuc.dll", ExactSpelling:=True, CallingConvention:=CallingConvention.Cdecl)>
Public Shared Function ucnv_openStandardNames(
    <MarshalAs(UnmanagedType.LPStr)> convName As String,   ' LPCSTR
    <MarshalAs(UnmanagedType.LPStr)> standard As String,   ' LPCSTR
    ByRef pErrorCode As Integer   ' UErrorCode* in/out
) As IntPtr
End Function
' convName : LPCSTR
' standard : LPCSTR
' pErrorCode : UErrorCode* in/out
Declare PtrSafe Function ucnv_openStandardNames Lib "icuuc" ( _
    ByVal convName As String, _
    ByVal standard As String, _
    ByRef pErrorCode As Long) As LongPtr
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。
import ctypes
from ctypes import wintypes

ucnv_openStandardNames = ctypes.cdll.icuuc.ucnv_openStandardNames
ucnv_openStandardNames.restype = ctypes.c_void_p
ucnv_openStandardNames.argtypes = [
    wintypes.LPCSTR,  # convName : LPCSTR
    wintypes.LPCSTR,  # standard : LPCSTR
    ctypes.c_void_p,  # pErrorCode : UErrorCode* in/out
]
require 'fiddle'
require 'fiddle/import'

lib = Fiddle.dlopen('icuuc.dll')
ucnv_openStandardNames = Fiddle::Function.new(
  lib['ucnv_openStandardNames'],
  [
    Fiddle::TYPE_VOIDP,  # convName : LPCSTR
    Fiddle::TYPE_VOIDP,  # standard : LPCSTR
    Fiddle::TYPE_VOIDP,  # pErrorCode : UErrorCode* in/out
  ],
  Fiddle::TYPE_VOIDP, Fiddle::Function::CDECL)
#[link(name = "icuuc")]
extern "C" {
    fn ucnv_openStandardNames(
        convName: *const u8,  // LPCSTR
        standard: *const u8,  // LPCSTR
        pErrorCode: *mut i32  // UErrorCode* in/out
    ) -> *mut isize;
}
// crates: windows-sys provides ready-made bindings for this API.
$sig = @"
[DllImport("icuuc.dll", CallingConvention = CallingConvention.Cdecl)]
public static extern IntPtr ucnv_openStandardNames([MarshalAs(UnmanagedType.LPStr)] string convName, [MarshalAs(UnmanagedType.LPStr)] string standard, ref int pErrorCode);
"@
$api = Add-Type -MemberDefinition $sig -Name 'icuuc_ucnv_openStandardNames' -Namespace Win32 -PassThru
# $api::ucnv_openStandardNames(convName, standard, pErrorCode)
#uselib "icuuc.dll"
#func global ucnv_openStandardNames "ucnv_openStandardNames" sptr, sptr, sptr
; ucnv_openStandardNames convName, standard, pErrorCode   ; 戻り値は stat
; convName : LPCSTR -> "sptr"
; standard : LPCSTR -> "sptr"
; pErrorCode : UErrorCode* in/out -> "sptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。
#uselib "icuuc.dll"
#cfunc global ucnv_openStandardNames "ucnv_openStandardNames" str, str, int
; res = ucnv_openStandardNames(convName, standard, pErrorCode)
; convName : LPCSTR -> "str"
; standard : LPCSTR -> "str"
; pErrorCode : UErrorCode* in/out -> "int"
; UEnumeration* ucnv_openStandardNames(LPCSTR convName, LPCSTR standard, UErrorCode* pErrorCode)
#uselib "icuuc.dll"
#cfunc global ucnv_openStandardNames "ucnv_openStandardNames" str, str, int
; res = ucnv_openStandardNames(convName, standard, pErrorCode)
; convName : LPCSTR -> "str"
; standard : LPCSTR -> "str"
; pErrorCode : UErrorCode* in/out -> "int"
import (
	"golang.org/x/sys/windows"
	"unsafe"
)

var (
	icuuc = windows.NewLazySystemDLL("icuuc.dll")
	procucnv_openStandardNames = icuuc.NewProc("ucnv_openStandardNames")
)

// convName (LPCSTR), standard (LPCSTR), pErrorCode (UErrorCode* in/out)
r1, _, err := procucnv_openStandardNames.Call(
	uintptr(unsafe.Pointer(windows.BytePtrFromString(convName))),
	uintptr(unsafe.Pointer(windows.BytePtrFromString(standard))),
	uintptr(pErrorCode),
)
_ = err  // syscall.Errno (valid when the call sets last-error)
_ = r1   // UEnumeration*
function ucnv_openStandardNames(
  convName: PAnsiChar;   // LPCSTR
  standard: PAnsiChar;   // LPCSTR
  pErrorCode: Pointer   // UErrorCode* in/out
): Pointer; cdecl;
  external 'icuuc.dll' name 'ucnv_openStandardNames';
result := DllCall("icuuc\ucnv_openStandardNames"
    , "AStr", convName   ; LPCSTR
    , "AStr", standard   ; LPCSTR
    , "Ptr", pErrorCode   ; UErrorCode* in/out
    , "Cdecl Ptr")   ; return: UEnumeration*
●ucnv_openStandardNames(convName, standard, pErrorCode) = DLL("icuuc.dll", "void* ucnv_openStandardNames(char*, char*, void*)")
# 呼び出し: ucnv_openStandardNames(convName, standard, pErrorCode)
# convName : LPCSTR -> "char*"
# standard : LPCSTR -> "char*"
# pErrorCode : UErrorCode* in/out -> "void*"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。
# ※cdecl関数。DLL()宣言はstdcall前提。cdeclは EXEC_PTR(`cdecl`,…) を使用。