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範囲数値書式を定義するスケルトン文字列。UTF-16配列で指定する。
skeletonLenINTinスケルトンの長さ(UTF-16単位)。-1でNUL終端として扱う。
collapseUNumberRangeCollapsein範囲両端の重複部分をどこまで畳むかを指定する列挙値。
identityFallbackUNumberRangeIdentityFallbackin上下端が等しい場合の表示方法を指定するフォールバック列挙値。
localeLPCSTRin範囲書式に用いるロケール名。NULLで既定ロケールを使用する。
perrorUParseError*inoutスケルトン解析エラーの位置・内容を受け取る構造体。NULL可。
ecUErrorCode*inoutICUのエラーコード。呼び出し前に成功値で初期化する。

戻り値の型: 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), varptr(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, var
; 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 -> "var"
; ※出力/バッファ引数は 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, var
; 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 -> "var"
; ※出力/バッファ引数は 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`,…) を使用。
const std = @import("std");

extern "icu" fn unumrf_openForSkeletonWithCollapseAndIdentityFallback(
    skeleton: [*c]u16, // WORD*
    skeletonLen: i32, // INT
    collapse: i32, // UNumberRangeCollapse
    identityFallback: i32, // UNumberRangeIdentityFallback
    locale: [*c]const u8, // LPCSTR
    perror: [*c]UParseError, // UParseError* in/out
    ec: [*c]i32 // UErrorCode* in/out
) callconv(.c) [*c]isize;
proc unumrf_openForSkeletonWithCollapseAndIdentityFallback(
    skeleton: ptr uint16,  # WORD*
    skeletonLen: int32,  # INT
    collapse: int32,  # UNumberRangeCollapse
    identityFallback: int32,  # UNumberRangeIdentityFallback
    locale: cstring,  # LPCSTR
    perror: ptr UParseError,  # UParseError* in/out
    ec: ptr int32  # UErrorCode* in/out
): ptr int {.importc: "unumrf_openForSkeletonWithCollapseAndIdentityFallback", cdecl, dynlib: "icu.dll".}
pragma(lib, "icu");
extern(C)
ptrdiff_t* unumrf_openForSkeletonWithCollapseAndIdentityFallback(
    ushort* skeleton,   // WORD*
    int skeletonLen,   // INT
    int collapse,   // UNumberRangeCollapse
    int identityFallback,   // UNumberRangeIdentityFallback
    const(char)* locale,   // LPCSTR
    UParseError* perror,   // UParseError* in/out
    int* ec   // UErrorCode* in/out
);
ccall((:unumrf_openForSkeletonWithCollapseAndIdentityFallback, "icu.dll"), Ptr{Int},
      (Ptr{UInt16}, Int32, Int32, Int32, Cstring, Ptr{UParseError}, Ptr{Int32}),
      skeleton, skeletonLen, collapse, identityFallback, locale, perror, ec)
# skeleton : WORD* -> Ptr{UInt16}
# skeletonLen : INT -> Int32
# collapse : UNumberRangeCollapse -> Int32
# identityFallback : UNumberRangeIdentityFallback -> Int32
# locale : LPCSTR -> Cstring
# perror : UParseError* in/out -> Ptr{UParseError}
# ec : UErrorCode* in/out -> Ptr{Int32}
local ffi = require("ffi")
ffi.cdef[[
intptr_t* unumrf_openForSkeletonWithCollapseAndIdentityFallback(
    uint16_t* skeleton,
    int32_t skeletonLen,
    int32_t collapse,
    int32_t identityFallback,
    const char* locale,
    void* perror,
    int32_t* ec);
]]
local icu = ffi.load("icu")
-- icu.unumrf_openForSkeletonWithCollapseAndIdentityFallback(skeleton, skeletonLen, collapse, identityFallback, locale, perror, ec)
-- skeleton : WORD*
-- skeletonLen : INT
-- collapse : UNumberRangeCollapse
-- identityFallback : UNumberRangeIdentityFallback
-- locale : LPCSTR
-- perror : UParseError* in/out
-- ec : UErrorCode* in/out
-- 構造体/GUIDへのポインタは cdef が通るよう void* で表記(実型は各引数コメント参照)。値渡し構造体・enum は対応する typedef を cdef に追加すること。
const koffi = require('koffi');
const lib = koffi.load('icu.dll');
const unumrf_openForSkeletonWithCollapseAndIdentityFallback = lib.func('__cdecl', 'unumrf_openForSkeletonWithCollapseAndIdentityFallback', 'intptr_t *', ['uint16_t *', 'int32_t', 'int32_t', 'int32_t', 'str', 'void *', 'int32_t *']);
// unumrf_openForSkeletonWithCollapseAndIdentityFallback(skeleton, skeletonLen, collapse, identityFallback, locale, perror, ec)
// skeleton : WORD* -> 'uint16_t *'
// skeletonLen : INT -> 'int32_t'
// collapse : UNumberRangeCollapse -> 'int32_t'
// identityFallback : UNumberRangeIdentityFallback -> 'int32_t'
// locale : LPCSTR -> 'str'
// perror : UParseError* in/out -> 'void *'
// ec : UErrorCode* in/out -> 'int32_t *'
// 出力ポインタは koffi.out(...) で包む。構造体は koffi.struct で定義。
const lib = Deno.dlopen("icu.dll", {
  unumrf_openForSkeletonWithCollapseAndIdentityFallback: { parameters: ["pointer", "i32", "i32", "i32", "buffer", "pointer", "pointer"], result: "pointer" },
});
// lib.symbols.unumrf_openForSkeletonWithCollapseAndIdentityFallback(skeleton, skeletonLen, collapse, identityFallback, locale, perror, ec)
// skeleton : WORD* -> "pointer"
// skeletonLen : INT -> "i32"
// collapse : UNumberRangeCollapse -> "i32"
// identityFallback : UNumberRangeIdentityFallback -> "i32"
// locale : LPCSTR -> "buffer"
// perror : UParseError* in/out -> "pointer"
// ec : UErrorCode* in/out -> "pointer"
// 文字列引数は "buffer"(NUL 終端のバイト列を Uint8Array で渡す)。
// 値渡し構造体は { struct: [ ...field types... ] } を使用。
<?php
$ffi = FFI::cdef(<<<C
intptr_t* unumrf_openForSkeletonWithCollapseAndIdentityFallback(
    uint16_t* skeleton,
    int32_t skeletonLen,
    int32_t collapse,
    int32_t identityFallback,
    const char* locale,
    void* perror,
    int32_t* ec);
C, "icu.dll");
// $ffi->unumrf_openForSkeletonWithCollapseAndIdentityFallback(skeleton, skeletonLen, collapse, identityFallback, locale, perror, ec);
// skeleton : WORD*
// skeletonLen : INT
// collapse : UNumberRangeCollapse
// identityFallback : UNumberRangeIdentityFallback
// locale : LPCSTR
// perror : UParseError* in/out
// ec : UErrorCode* in/out
// 構造体/GUIDへのポインタは cdef が通るよう void* で表記(実型は各引数コメント参照)。値渡し構造体・enum は対応する typedef を cdef に追加すること。
import com.sun.jna.*;
import com.sun.jna.ptr.*;
import com.sun.jna.win32.StdCallLibrary;
import com.sun.jna.win32.W32APIOptions;

public interface Icu extends Library {
    Icu INSTANCE = Native.load("icu", Icu.class);
    Pointer unumrf_openForSkeletonWithCollapseAndIdentityFallback(
        ShortByReference skeleton,   // WORD*
        int skeletonLen,   // INT
        int collapse,   // UNumberRangeCollapse
        int identityFallback,   // UNumberRangeIdentityFallback
        String locale,   // LPCSTR
        Pointer perror,   // UParseError* in/out
        IntByReference ec   // UErrorCode* in/out
    );
}
@[Link("icu")]
lib Libicu
  fun unumrf_openForSkeletonWithCollapseAndIdentityFallback = unumrf_openForSkeletonWithCollapseAndIdentityFallback(
    skeleton : UInt16*,   # WORD*
    skeletonLen : Int32,   # INT
    collapse : Int32,   # UNumberRangeCollapse
    identityFallback : Int32,   # UNumberRangeIdentityFallback
    locale : UInt8*,   # LPCSTR
    perror : UParseError*,   # UParseError* in/out
    ec : Int32*   # UErrorCode* in/out
  ) : LibC::SSizeT*
end
# 構造体/GUID/enum は lib 内に対応する型定義が必要。
import 'dart:ffi';
import 'package:ffi/ffi.dart';

typedef unumrf_openForSkeletonWithCollapseAndIdentityFallbackNative = Pointer<IntPtr> Function(Pointer<Uint16>, Int32, Int32, Int32, Pointer<Utf8>, Pointer<Void>, Pointer<Int32>);
typedef unumrf_openForSkeletonWithCollapseAndIdentityFallbackDart = Pointer<IntPtr> Function(Pointer<Uint16>, int, int, int, Pointer<Utf8>, Pointer<Void>, Pointer<Int32>);
final unumrf_openForSkeletonWithCollapseAndIdentityFallback = DynamicLibrary.open('icu.dll')
    .lookupFunction<unumrf_openForSkeletonWithCollapseAndIdentityFallbackNative, unumrf_openForSkeletonWithCollapseAndIdentityFallbackDart>('unumrf_openForSkeletonWithCollapseAndIdentityFallback');
// skeleton : WORD* -> Pointer<Uint16>
// skeletonLen : INT -> Int32
// collapse : UNumberRangeCollapse -> Int32
// identityFallback : UNumberRangeIdentityFallback -> Int32
// locale : LPCSTR -> Pointer<Utf8>
// perror : UParseError* in/out -> Pointer<Void>
// ec : UErrorCode* in/out -> Pointer<Int32>
// 文字列は package:ffi の "...".toNativeUtf16()/toNativeUtf8() で変換。
{$mode objfpc}{$H+}
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';
import Foreign
import Foreign.C.Types
import Foreign.C.String

foreign import ccall safe "unumrf_openForSkeletonWithCollapseAndIdentityFallback"
  c_unumrf_openForSkeletonWithCollapseAndIdentityFallback :: Ptr Word16 -> Int32 -> Int32 -> Int32 -> CString -> Ptr () -> Ptr Int32 -> IO (Ptr CIntPtr)
-- skeleton : WORD* -> Ptr Word16
-- skeletonLen : INT -> Int32
-- collapse : UNumberRangeCollapse -> Int32
-- identityFallback : UNumberRangeIdentityFallback -> Int32
-- locale : LPCSTR -> CString
-- perror : UParseError* in/out -> Ptr ()
-- ec : UErrorCode* in/out -> Ptr Int32
-- 要 GHC(Windows)。stdcall は x64 では ccall として扱われる。ブロックする API は safe 呼び出し推奨。
open Ctypes
open Foreign

let unumrf_openforskeletonwithcollapseandidentityfallback =
  foreign "unumrf_openForSkeletonWithCollapseAndIdentityFallback"
    ((ptr uint16_t) @-> int32_t @-> int32_t @-> int32_t @-> string @-> (ptr void) @-> (ptr int32_t) @-> returning (ptr intptr_t))
(* skeleton : WORD* -> (ptr uint16_t) *)
(* skeletonLen : INT -> int32_t *)
(* collapse : UNumberRangeCollapse -> int32_t *)
(* identityFallback : UNumberRangeIdentityFallback -> int32_t *)
(* locale : LPCSTR -> string *)
(* perror : UParseError* in/out -> (ptr void) *)
(* ec : UErrorCode* in/out -> (ptr int32_t) *)
(* foreign は cdecl 前提。x64 Windows では WINAPI と一致。構造体は ctypes structure を定義のこと。 *)
(cffi:define-foreign-library icu (t "icu.dll"))
(cffi:use-foreign-library icu)

(cffi:defcfun ("unumrf_openForSkeletonWithCollapseAndIdentityFallback" unumrf-open-for-skeleton-with-collapse-and-identity-fallback :convention :cdecl) :pointer
  (skeleton :pointer)   ; WORD*
  (skeleton-len :int32)   ; INT
  (collapse :int32)   ; UNumberRangeCollapse
  (identity-fallback :int32)   ; UNumberRangeIdentityFallback
  (locale :string)   ; LPCSTR
  (perror :pointer)   ; UParseError* in/out
  (ec :pointer))   ; UErrorCode* in/out
; isize/usize(INT_PTR/SIZE_T)は x64 前提で :int64/:uint64。x86 では :int32/:uint32。
use Win32::API;
my $unumrf_openForSkeletonWithCollapseAndIdentityFallback = Win32::API::More->new('icu',
    'LPVOID unumrf_openForSkeletonWithCollapseAndIdentityFallback(LPVOID skeleton, int skeletonLen, int collapse, int identityFallback, LPCSTR locale, LPVOID perror, LPVOID ec)');
# my $ret = $unumrf_openForSkeletonWithCollapseAndIdentityFallback->Call($skeleton, $skeletonLen, $collapse, $identityFallback, $locale, $perror, $ec);
# skeleton : WORD* -> LPVOID
# skeletonLen : INT -> int
# collapse : UNumberRangeCollapse -> int
# identityFallback : UNumberRangeIdentityFallback -> int
# locale : LPCSTR -> LPCSTR
# perror : UParseError* in/out -> LPVOID
# ec : UErrorCode* in/out -> LPVOID
# 値渡し構造体は pack() した文字列、または Win32::API::Struct を使用。

関連項目

使用する型