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

ucnv_openCCSID

関数
CCSIDコードページ番号で文字コード変換器を開く。
DLLicuuc.dll呼出規約cdecl

シグネチャ

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

UConverter* ucnv_openCCSID(
    INT codepage,
    UConverterPlatform platform,
    UErrorCode* err
);

パラメーター

名前方向
codepageINTin
platformUConverterPlatformin
errUErrorCode*inout

戻り値の型: UConverter*

各言語での呼び出し定義

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

UConverter* ucnv_openCCSID(
    INT codepage,
    UConverterPlatform platform,
    UErrorCode* err
);
[DllImport("icuuc.dll", ExactSpelling = true, CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr ucnv_openCCSID(
    int codepage,   // INT
    int platform,   // UConverterPlatform
    ref int err   // UErrorCode* in/out
);
<DllImport("icuuc.dll", ExactSpelling:=True, CallingConvention:=CallingConvention.Cdecl)>
Public Shared Function ucnv_openCCSID(
    codepage As Integer,   ' INT
    platform As Integer,   ' UConverterPlatform
    ByRef err As Integer   ' UErrorCode* in/out
) As IntPtr
End Function
' codepage : INT
' platform : UConverterPlatform
' err : UErrorCode* in/out
Declare PtrSafe Function ucnv_openCCSID Lib "icuuc" ( _
    ByVal codepage As Long, _
    ByVal platform As Long, _
    ByRef err As Long) As LongPtr
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。
import ctypes
from ctypes import wintypes

ucnv_openCCSID = ctypes.cdll.icuuc.ucnv_openCCSID
ucnv_openCCSID.restype = ctypes.c_void_p
ucnv_openCCSID.argtypes = [
    ctypes.c_int,  # codepage : INT
    ctypes.c_int,  # platform : UConverterPlatform
    ctypes.c_void_p,  # err : UErrorCode* in/out
]
require 'fiddle'
require 'fiddle/import'

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

var (
	icuuc = windows.NewLazySystemDLL("icuuc.dll")
	procucnv_openCCSID = icuuc.NewProc("ucnv_openCCSID")
)

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