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

unumrf_openForSkeletonWithCollapseAndIdentityFallback

関数
折り畳みと同値時の代替指定で数値範囲書式器を作成する。
DLLicu.dll呼出規約cdecl

シグネチャ

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

UNumberRangeFormatter* unumrf_openForSkeletonWithCollapseAndIdentityFallback(
    const WORD* skeleton,
    INT skeletonLen,
    UNumberRangeCollapse collapse,
    UNumberRangeIdentityFallback identityFallback,
    LPCSTR locale,
    UParseError* perror,
    UErrorCode* ec
);

パラメーター

名前方向
skeletonWORD*in
skeletonLenINTin
collapseUNumberRangeCollapsein
identityFallbackUNumberRangeIdentityFallbackin
localeLPCSTRin
perrorUParseError*inout
ecUErrorCode*inout

戻り値の型: UNumberRangeFormatter*

各言語での呼び出し定義

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

UNumberRangeFormatter* unumrf_openForSkeletonWithCollapseAndIdentityFallback(
    const WORD* skeleton,
    INT skeletonLen,
    UNumberRangeCollapse collapse,
    UNumberRangeIdentityFallback identityFallback,
    LPCSTR locale,
    UParseError* perror,
    UErrorCode* ec
);
[DllImport("icu.dll", ExactSpelling = true, CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr unumrf_openForSkeletonWithCollapseAndIdentityFallback(
    ref ushort skeleton,   // WORD*
    int skeletonLen,   // INT
    int collapse,   // UNumberRangeCollapse
    int identityFallback,   // UNumberRangeIdentityFallback
    [MarshalAs(UnmanagedType.LPStr)] string locale,   // LPCSTR
    IntPtr perror,   // UParseError* in/out
    ref int ec   // UErrorCode* in/out
);
<DllImport("icu.dll", ExactSpelling:=True, CallingConvention:=CallingConvention.Cdecl)>
Public Shared Function unumrf_openForSkeletonWithCollapseAndIdentityFallback(
    ByRef skeleton As UShort,   ' WORD*
    skeletonLen As Integer,   ' INT
    collapse As Integer,   ' UNumberRangeCollapse
    identityFallback As Integer,   ' UNumberRangeIdentityFallback
    <MarshalAs(UnmanagedType.LPStr)> locale As String,   ' LPCSTR
    perror As IntPtr,   ' UParseError* in/out
    ByRef ec As Integer   ' UErrorCode* in/out
) As IntPtr
End Function
' skeleton : WORD*
' skeletonLen : INT
' collapse : UNumberRangeCollapse
' identityFallback : UNumberRangeIdentityFallback
' locale : LPCSTR
' perror : UParseError* in/out
' ec : UErrorCode* in/out
Declare PtrSafe Function unumrf_openForSkeletonWithCollapseAndIdentityFallback Lib "icu" ( _
    ByRef skeleton As Integer, _
    ByVal skeletonLen As Long, _
    ByVal collapse As Long, _
    ByVal identityFallback As Long, _
    ByVal locale As String, _
    ByVal perror As LongPtr, _
    ByRef ec As Long) As LongPtr
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。
import ctypes
from ctypes import wintypes

unumrf_openForSkeletonWithCollapseAndIdentityFallback = ctypes.cdll.icu.unumrf_openForSkeletonWithCollapseAndIdentityFallback
unumrf_openForSkeletonWithCollapseAndIdentityFallback.restype = ctypes.c_void_p
unumrf_openForSkeletonWithCollapseAndIdentityFallback.argtypes = [
    ctypes.POINTER(ctypes.c_ushort),  # skeleton : WORD*
    ctypes.c_int,  # skeletonLen : INT
    ctypes.c_int,  # collapse : UNumberRangeCollapse
    ctypes.c_int,  # identityFallback : UNumberRangeIdentityFallback
    wintypes.LPCSTR,  # locale : LPCSTR
    ctypes.c_void_p,  # perror : UParseError* in/out
    ctypes.c_void_p,  # ec : UErrorCode* in/out
]
require 'fiddle'
require 'fiddle/import'

lib = Fiddle.dlopen('icu.dll')
unumrf_openForSkeletonWithCollapseAndIdentityFallback = Fiddle::Function.new(
  lib['unumrf_openForSkeletonWithCollapseAndIdentityFallback'],
  [
    Fiddle::TYPE_VOIDP,  # skeleton : WORD*
    Fiddle::TYPE_INT,  # skeletonLen : INT
    Fiddle::TYPE_INT,  # collapse : UNumberRangeCollapse
    Fiddle::TYPE_INT,  # identityFallback : UNumberRangeIdentityFallback
    Fiddle::TYPE_VOIDP,  # locale : LPCSTR
    Fiddle::TYPE_VOIDP,  # perror : UParseError* in/out
    Fiddle::TYPE_VOIDP,  # ec : UErrorCode* in/out
  ],
  Fiddle::TYPE_VOIDP, Fiddle::Function::CDECL)
#[link(name = "icu")]
extern "C" {
    fn unumrf_openForSkeletonWithCollapseAndIdentityFallback(
        skeleton: *const u16,  // WORD*
        skeletonLen: i32,  // INT
        collapse: i32,  // UNumberRangeCollapse
        identityFallback: i32,  // UNumberRangeIdentityFallback
        locale: *const u8,  // LPCSTR
        perror: *mut UParseError,  // UParseError* in/out
        ec: *mut i32  // UErrorCode* in/out
    ) -> *mut isize;
}
// crates: windows-sys provides ready-made bindings for this API.
$sig = @"
[DllImport("icu.dll", CallingConvention = CallingConvention.Cdecl)]
public static extern IntPtr unumrf_openForSkeletonWithCollapseAndIdentityFallback(ref ushort skeleton, int skeletonLen, int collapse, int identityFallback, [MarshalAs(UnmanagedType.LPStr)] string locale, IntPtr perror, ref int ec);
"@
$api = Add-Type -MemberDefinition $sig -Name 'icu_unumrf_openForSkeletonWithCollapseAndIdentityFallback' -Namespace Win32 -PassThru
# $api::unumrf_openForSkeletonWithCollapseAndIdentityFallback(skeleton, skeletonLen, collapse, identityFallback, locale, perror, ec)
#uselib "icu.dll"
#func global unumrf_openForSkeletonWithCollapseAndIdentityFallback "unumrf_openForSkeletonWithCollapseAndIdentityFallback" sptr, sptr, sptr, sptr, sptr, sptr, sptr
; unumrf_openForSkeletonWithCollapseAndIdentityFallback varptr(skeleton), skeletonLen, collapse, identityFallback, locale, varptr(perror), ec   ; 戻り値は stat
; skeleton : WORD* -> "sptr"
; skeletonLen : INT -> "sptr"
; collapse : UNumberRangeCollapse -> "sptr"
; identityFallback : UNumberRangeIdentityFallback -> "sptr"
; locale : LPCSTR -> "sptr"
; perror : UParseError* in/out -> "sptr"
; ec : UErrorCode* in/out -> "sptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。
出力引数:
#uselib "icu.dll"
#cfunc global unumrf_openForSkeletonWithCollapseAndIdentityFallback "unumrf_openForSkeletonWithCollapseAndIdentityFallback" var, int, int, int, str, var, int
; res = unumrf_openForSkeletonWithCollapseAndIdentityFallback(skeleton, skeletonLen, collapse, identityFallback, locale, perror, ec)
; skeleton : WORD* -> "var"
; skeletonLen : INT -> "int"
; collapse : UNumberRangeCollapse -> "int"
; identityFallback : UNumberRangeIdentityFallback -> "int"
; locale : LPCSTR -> "str"
; perror : UParseError* in/out -> "var"
; ec : UErrorCode* in/out -> "int"
; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。
出力引数:
; UNumberRangeFormatter* unumrf_openForSkeletonWithCollapseAndIdentityFallback(WORD* skeleton, INT skeletonLen, UNumberRangeCollapse collapse, UNumberRangeIdentityFallback identityFallback, LPCSTR locale, UParseError* perror, UErrorCode* ec)
#uselib "icu.dll"
#cfunc global unumrf_openForSkeletonWithCollapseAndIdentityFallback "unumrf_openForSkeletonWithCollapseAndIdentityFallback" var, int, int, int, str, var, int
; res = unumrf_openForSkeletonWithCollapseAndIdentityFallback(skeleton, skeletonLen, collapse, identityFallback, locale, perror, ec)
; skeleton : WORD* -> "var"
; skeletonLen : INT -> "int"
; collapse : UNumberRangeCollapse -> "int"
; identityFallback : UNumberRangeIdentityFallback -> "int"
; locale : LPCSTR -> "str"
; perror : UParseError* in/out -> "var"
; ec : UErrorCode* in/out -> "int"
; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。
import (
	"golang.org/x/sys/windows"
	"unsafe"
)

var (
	icu = windows.NewLazySystemDLL("icu.dll")
	procunumrf_openForSkeletonWithCollapseAndIdentityFallback = icu.NewProc("unumrf_openForSkeletonWithCollapseAndIdentityFallback")
)

// skeleton (WORD*), skeletonLen (INT), collapse (UNumberRangeCollapse), identityFallback (UNumberRangeIdentityFallback), locale (LPCSTR), perror (UParseError* in/out), ec (UErrorCode* in/out)
r1, _, err := procunumrf_openForSkeletonWithCollapseAndIdentityFallback.Call(
	uintptr(skeleton),
	uintptr(skeletonLen),
	uintptr(collapse),
	uintptr(identityFallback),
	uintptr(unsafe.Pointer(windows.BytePtrFromString(locale))),
	uintptr(perror),
	uintptr(ec),
)
_ = err  // syscall.Errno (valid when the call sets last-error)
_ = r1   // UNumberRangeFormatter*
function unumrf_openForSkeletonWithCollapseAndIdentityFallback(
  skeleton: Pointer;   // WORD*
  skeletonLen: Integer;   // INT
  collapse: Integer;   // UNumberRangeCollapse
  identityFallback: Integer;   // UNumberRangeIdentityFallback
  locale: PAnsiChar;   // LPCSTR
  perror: Pointer;   // UParseError* in/out
  ec: Pointer   // UErrorCode* in/out
): Pointer; cdecl;
  external 'icu.dll' name 'unumrf_openForSkeletonWithCollapseAndIdentityFallback';
result := DllCall("icu\unumrf_openForSkeletonWithCollapseAndIdentityFallback"
    , "Ptr", skeleton   ; WORD*
    , "Int", skeletonLen   ; INT
    , "Int", collapse   ; UNumberRangeCollapse
    , "Int", identityFallback   ; UNumberRangeIdentityFallback
    , "AStr", locale   ; LPCSTR
    , "Ptr", perror   ; UParseError* in/out
    , "Ptr", ec   ; UErrorCode* in/out
    , "Cdecl Ptr")   ; return: UNumberRangeFormatter*
●unumrf_openForSkeletonWithCollapseAndIdentityFallback(skeleton, skeletonLen, collapse, identityFallback, locale, perror, ec) = DLL("icu.dll", "void* unumrf_openForSkeletonWithCollapseAndIdentityFallback(void*, int, int, int, char*, void*, void*)")
# 呼び出し: unumrf_openForSkeletonWithCollapseAndIdentityFallback(skeleton, skeletonLen, collapse, identityFallback, locale, perror, ec)
# skeleton : WORD* -> "void*"
# skeletonLen : INT -> "int"
# collapse : UNumberRangeCollapse -> "int"
# identityFallback : UNumberRangeIdentityFallback -> "int"
# locale : LPCSTR -> "char*"
# perror : UParseError* in/out -> "void*"
# ec : UErrorCode* in/out -> "void*"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。
# ※cdecl関数。DLL()宣言はstdcall前提。cdeclは EXEC_PTR(`cdecl`,…) を使用。