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

ucnv_openAllNames

関数
利用可能な全コンバーター名を列挙する列挙子を開く。
DLLicuuc.dll呼出規約cdecl

シグネチャ

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

UEnumeration* ucnv_openAllNames(
    UErrorCode* pErrorCode
);

パラメーター

名前方向
pErrorCodeUErrorCode*inout

戻り値の型: UEnumeration*

各言語での呼び出し定義

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

UEnumeration* ucnv_openAllNames(
    UErrorCode* pErrorCode
);
[DllImport("icuuc.dll", ExactSpelling = true, CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr ucnv_openAllNames(
    ref int pErrorCode   // UErrorCode* in/out
);
<DllImport("icuuc.dll", ExactSpelling:=True, CallingConvention:=CallingConvention.Cdecl)>
Public Shared Function ucnv_openAllNames(
    ByRef pErrorCode As Integer   ' UErrorCode* in/out
) As IntPtr
End Function
' pErrorCode : UErrorCode* in/out
Declare PtrSafe Function ucnv_openAllNames Lib "icuuc" ( _
    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_openAllNames = ctypes.cdll.icuuc.ucnv_openAllNames
ucnv_openAllNames.restype = ctypes.c_void_p
ucnv_openAllNames.argtypes = [
    ctypes.c_void_p,  # pErrorCode : UErrorCode* in/out
]
require 'fiddle'
require 'fiddle/import'

lib = Fiddle.dlopen('icuuc.dll')
ucnv_openAllNames = Fiddle::Function.new(
  lib['ucnv_openAllNames'],
  [
    Fiddle::TYPE_VOIDP,  # pErrorCode : UErrorCode* in/out
  ],
  Fiddle::TYPE_VOIDP, Fiddle::Function::CDECL)
#[link(name = "icuuc")]
extern "C" {
    fn ucnv_openAllNames(
        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_openAllNames(ref int pErrorCode);
"@
$api = Add-Type -MemberDefinition $sig -Name 'icuuc_ucnv_openAllNames' -Namespace Win32 -PassThru
# $api::ucnv_openAllNames(pErrorCode)
#uselib "icuuc.dll"
#func global ucnv_openAllNames "ucnv_openAllNames" sptr
; ucnv_openAllNames pErrorCode   ; 戻り値は stat
; pErrorCode : UErrorCode* in/out -> "sptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。
#uselib "icuuc.dll"
#cfunc global ucnv_openAllNames "ucnv_openAllNames" int
; res = ucnv_openAllNames(pErrorCode)
; pErrorCode : UErrorCode* in/out -> "int"
; UEnumeration* ucnv_openAllNames(UErrorCode* pErrorCode)
#uselib "icuuc.dll"
#cfunc global ucnv_openAllNames "ucnv_openAllNames" int
; res = ucnv_openAllNames(pErrorCode)
; pErrorCode : UErrorCode* in/out -> "int"
import (
	"golang.org/x/sys/windows"
	"unsafe"
)

var (
	icuuc = windows.NewLazySystemDLL("icuuc.dll")
	procucnv_openAllNames = icuuc.NewProc("ucnv_openAllNames")
)

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