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

uspoof_getSkeletonUTF8

関数
UTF-8文字列の混同判定用スケルトンを生成する。
DLLicuin.dll呼出規約cdecl

シグネチャ

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

INT uspoof_getSkeletonUTF8(
    const USpoofChecker* sc,
    DWORD type,
    LPCSTR id,
    INT length,
    LPSTR dest,
    INT destCapacity,
    UErrorCode* status
);

パラメーター

名前方向説明
scUSpoofChecker*in対象のUSpoofCheckerへのポインター。
typeDWORDin非推奨のスケルトン種別フラグ。通常は0を指定する。
idLPCSTRinスケルトンを生成する元の識別子を指すUTF-8文字列へのポインター。
lengthINTin識別子のバイト長。NUL終端なら-1を指定可能。
destLPSTRin生成されたスケルトン文字列を格納するUTF-8出力バッファへのポインター。
destCapacityINTindestバッファの容量(バイト数)。
statusUErrorCode*inoutICUのエラーコードを入出力するUErrorCodeへのポインター。

戻り値の型: INT

各言語での呼び出し定義

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

INT uspoof_getSkeletonUTF8(
    const USpoofChecker* sc,
    DWORD type,
    LPCSTR id,
    INT length,
    LPSTR dest,
    INT destCapacity,
    UErrorCode* status
);
[DllImport("icuin.dll", ExactSpelling = true, CallingConvention = CallingConvention.Cdecl)]
static extern int uspoof_getSkeletonUTF8(
    ref IntPtr sc,   // USpoofChecker*
    uint type,   // DWORD
    [MarshalAs(UnmanagedType.LPStr)] string id,   // LPCSTR
    int length,   // INT
    [MarshalAs(UnmanagedType.LPStr)] string dest,   // LPSTR
    int destCapacity,   // INT
    ref int status   // UErrorCode* in/out
);
<DllImport("icuin.dll", ExactSpelling:=True, CallingConvention:=CallingConvention.Cdecl)>
Public Shared Function uspoof_getSkeletonUTF8(
    ByRef sc As IntPtr,   ' USpoofChecker*
    type As UInteger,   ' DWORD
    <MarshalAs(UnmanagedType.LPStr)> id As String,   ' LPCSTR
    length As Integer,   ' INT
    <MarshalAs(UnmanagedType.LPStr)> dest As String,   ' LPSTR
    destCapacity As Integer,   ' INT
    ByRef status As Integer   ' UErrorCode* in/out
) As Integer
End Function
' sc : USpoofChecker*
' type : DWORD
' id : LPCSTR
' length : INT
' dest : LPSTR
' destCapacity : INT
' status : UErrorCode* in/out
Declare PtrSafe Function uspoof_getSkeletonUTF8 Lib "icuin" ( _
    ByRef sc As LongPtr, _
    ByVal type As Long, _
    ByVal id As String, _
    ByVal length As Long, _
    ByVal dest As String, _
    ByVal destCapacity As Long, _
    ByRef status As Long) As Long
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。
import ctypes
from ctypes import wintypes

uspoof_getSkeletonUTF8 = ctypes.cdll.icuin.uspoof_getSkeletonUTF8
uspoof_getSkeletonUTF8.restype = ctypes.c_int
uspoof_getSkeletonUTF8.argtypes = [
    ctypes.c_void_p,  # sc : USpoofChecker*
    wintypes.DWORD,  # type : DWORD
    wintypes.LPCSTR,  # id : LPCSTR
    ctypes.c_int,  # length : INT
    wintypes.LPCSTR,  # dest : LPSTR
    ctypes.c_int,  # destCapacity : INT
    ctypes.c_void_p,  # status : UErrorCode* in/out
]
require 'fiddle'
require 'fiddle/import'

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

var (
	icuin = windows.NewLazySystemDLL("icuin.dll")
	procuspoof_getSkeletonUTF8 = icuin.NewProc("uspoof_getSkeletonUTF8")
)

// sc (USpoofChecker*), type (DWORD), id (LPCSTR), length (INT), dest (LPSTR), destCapacity (INT), status (UErrorCode* in/out)
r1, _, err := procuspoof_getSkeletonUTF8.Call(
	uintptr(sc),
	uintptr(type),
	uintptr(unsafe.Pointer(windows.BytePtrFromString(id))),
	uintptr(length),
	uintptr(unsafe.Pointer(windows.BytePtrFromString(dest))),
	uintptr(destCapacity),
	uintptr(status),
)
_ = err  // syscall.Errno (valid when the call sets last-error)
_ = r1   // INT
function uspoof_getSkeletonUTF8(
  sc: Pointer;   // USpoofChecker*
  type: DWORD;   // DWORD
  id: PAnsiChar;   // LPCSTR
  length: Integer;   // INT
  dest: PAnsiChar;   // LPSTR
  destCapacity: Integer;   // INT
  status: Pointer   // UErrorCode* in/out
): Integer; cdecl;
  external 'icuin.dll' name 'uspoof_getSkeletonUTF8';
result := DllCall("icuin\uspoof_getSkeletonUTF8"
    , "Ptr", sc   ; USpoofChecker*
    , "UInt", type   ; DWORD
    , "AStr", id   ; LPCSTR
    , "Int", length   ; INT
    , "AStr", dest   ; LPSTR
    , "Int", destCapacity   ; INT
    , "Ptr", status   ; UErrorCode* in/out
    , "Cdecl Int")   ; return: INT
●uspoof_getSkeletonUTF8(sc, type, id, length, dest, destCapacity, status) = DLL("icuin.dll", "int uspoof_getSkeletonUTF8(void*, dword, char*, int, char*, int, void*)")
# 呼び出し: uspoof_getSkeletonUTF8(sc, type, id, length, dest, destCapacity, status)
# sc : USpoofChecker* -> "void*"
# type : DWORD -> "dword"
# id : LPCSTR -> "char*"
# length : INT -> "int"
# dest : LPSTR -> "char*"
# destCapacity : INT -> "int"
# status : 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 "icuin" fn uspoof_getSkeletonUTF8(
    sc: [*c]isize, // USpoofChecker*
    type: u32, // DWORD
    id: [*c]const u8, // LPCSTR
    length: i32, // INT
    dest: [*c]const u8, // LPSTR
    destCapacity: i32, // INT
    status: [*c]i32 // UErrorCode* in/out
) callconv(.c) i32;
proc uspoof_getSkeletonUTF8(
    sc: ptr int,  # USpoofChecker*
    `type`: uint32,  # DWORD
    id: cstring,  # LPCSTR
    length: int32,  # INT
    dest: cstring,  # LPSTR
    destCapacity: int32,  # INT
    status: ptr int32  # UErrorCode* in/out
): int32 {.importc: "uspoof_getSkeletonUTF8", cdecl, dynlib: "icuin.dll".}
pragma(lib, "icuin");
extern(C)
int uspoof_getSkeletonUTF8(
    ptrdiff_t* sc,   // USpoofChecker*
    uint type,   // DWORD
    const(char)* id,   // LPCSTR
    int length,   // INT
    const(char)* dest,   // LPSTR
    int destCapacity,   // INT
    int* status   // UErrorCode* in/out
);
ccall((:uspoof_getSkeletonUTF8, "icuin.dll"), Int32,
      (Ptr{Int}, UInt32, Cstring, Int32, Cstring, Int32, Ptr{Int32}),
      sc, type, id, length, dest, destCapacity, status)
# sc : USpoofChecker* -> Ptr{Int}
# type : DWORD -> UInt32
# id : LPCSTR -> Cstring
# length : INT -> Int32
# dest : LPSTR -> Cstring
# destCapacity : INT -> Int32
# status : UErrorCode* in/out -> Ptr{Int32}
local ffi = require("ffi")
ffi.cdef[[
int32_t uspoof_getSkeletonUTF8(
    intptr_t* sc,
    uint32_t type,
    const char* id,
    int32_t length,
    const char* dest,
    int32_t destCapacity,
    int32_t* status);
]]
local icuin = ffi.load("icuin")
-- icuin.uspoof_getSkeletonUTF8(sc, type, id, length, dest, destCapacity, status)
-- sc : USpoofChecker*
-- type : DWORD
-- id : LPCSTR
-- length : INT
-- dest : LPSTR
-- destCapacity : INT
-- status : UErrorCode* in/out
-- 構造体/GUIDへのポインタは cdef が通るよう void* で表記(実型は各引数コメント参照)。値渡し構造体・enum は対応する typedef を cdef に追加すること。
const koffi = require('koffi');
const lib = koffi.load('icuin.dll');
const uspoof_getSkeletonUTF8 = lib.func('__cdecl', 'uspoof_getSkeletonUTF8', 'int32_t', ['intptr_t *', 'uint32_t', 'str', 'int32_t', 'str', 'int32_t', 'int32_t *']);
// uspoof_getSkeletonUTF8(sc, type, id, length, dest, destCapacity, status)
// sc : USpoofChecker* -> 'intptr_t *'
// type : DWORD -> 'uint32_t'
// id : LPCSTR -> 'str'
// length : INT -> 'int32_t'
// dest : LPSTR -> 'str'
// destCapacity : INT -> 'int32_t'
// status : UErrorCode* in/out -> 'int32_t *'
// 出力ポインタは koffi.out(...) で包む。構造体は koffi.struct で定義。
const lib = Deno.dlopen("icuin.dll", {
  uspoof_getSkeletonUTF8: { parameters: ["pointer", "u32", "buffer", "i32", "buffer", "i32", "pointer"], result: "i32" },
});
// lib.symbols.uspoof_getSkeletonUTF8(sc, type, id, length, dest, destCapacity, status)
// sc : USpoofChecker* -> "pointer"
// type : DWORD -> "u32"
// id : LPCSTR -> "buffer"
// length : INT -> "i32"
// dest : LPSTR -> "buffer"
// destCapacity : INT -> "i32"
// status : UErrorCode* in/out -> "pointer"
// 文字列引数は "buffer"(NUL 終端のバイト列を Uint8Array で渡す)。
// 値渡し構造体は { struct: [ ...field types... ] } を使用。
<?php
$ffi = FFI::cdef(<<<C
int32_t uspoof_getSkeletonUTF8(
    intptr_t* sc,
    uint32_t type,
    const char* id,
    int32_t length,
    const char* dest,
    int32_t destCapacity,
    int32_t* status);
C, "icuin.dll");
// $ffi->uspoof_getSkeletonUTF8(sc, type, id, length, dest, destCapacity, status);
// sc : USpoofChecker*
// type : DWORD
// id : LPCSTR
// length : INT
// dest : LPSTR
// destCapacity : INT
// status : 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 Icuin extends Library {
    Icuin INSTANCE = Native.load("icuin", Icuin.class);
    int uspoof_getSkeletonUTF8(
        LongByReference sc,   // USpoofChecker*
        int type,   // DWORD
        String id,   // LPCSTR
        int length,   // INT
        String dest,   // LPSTR
        int destCapacity,   // INT
        IntByReference status   // UErrorCode* in/out
    );
}
@[Link("icuin")]
lib Libicuin
  fun uspoof_getSkeletonUTF8 = uspoof_getSkeletonUTF8(
    sc : LibC::SSizeT*,   # USpoofChecker*
    type_ : UInt32,   # DWORD
    id : UInt8*,   # LPCSTR
    length : Int32,   # INT
    dest : UInt8*,   # LPSTR
    destCapacity : Int32,   # INT
    status : Int32*   # UErrorCode* in/out
  ) : Int32
end
# 構造体/GUID/enum は lib 内に対応する型定義が必要。
import 'dart:ffi';
import 'package:ffi/ffi.dart';

typedef uspoof_getSkeletonUTF8Native = Int32 Function(Pointer<IntPtr>, Uint32, Pointer<Utf8>, Int32, Pointer<Utf8>, Int32, Pointer<Int32>);
typedef uspoof_getSkeletonUTF8Dart = int Function(Pointer<IntPtr>, int, Pointer<Utf8>, int, Pointer<Utf8>, int, Pointer<Int32>);
final uspoof_getSkeletonUTF8 = DynamicLibrary.open('icuin.dll')
    .lookupFunction<uspoof_getSkeletonUTF8Native, uspoof_getSkeletonUTF8Dart>('uspoof_getSkeletonUTF8');
// sc : USpoofChecker* -> Pointer<IntPtr>
// type : DWORD -> Uint32
// id : LPCSTR -> Pointer<Utf8>
// length : INT -> Int32
// dest : LPSTR -> Pointer<Utf8>
// destCapacity : INT -> Int32
// status : UErrorCode* in/out -> Pointer<Int32>
// 文字列は package:ffi の "...".toNativeUtf16()/toNativeUtf8() で変換。
{$mode objfpc}{$H+}
function uspoof_getSkeletonUTF8(
  sc: Pointer;   // USpoofChecker*
  type: DWORD;   // DWORD
  id: PAnsiChar;   // LPCSTR
  length: Integer;   // INT
  dest: PAnsiChar;   // LPSTR
  destCapacity: Integer;   // INT
  status: Pointer   // UErrorCode* in/out
): Integer; cdecl;
  external 'icuin.dll' name 'uspoof_getSkeletonUTF8';
import Foreign
import Foreign.C.Types
import Foreign.C.String

foreign import ccall safe "uspoof_getSkeletonUTF8"
  c_uspoof_getSkeletonUTF8 :: Ptr CIntPtr -> Word32 -> CString -> Int32 -> CString -> Int32 -> Ptr Int32 -> IO Int32
-- sc : USpoofChecker* -> Ptr CIntPtr
-- type : DWORD -> Word32
-- id : LPCSTR -> CString
-- length : INT -> Int32
-- dest : LPSTR -> CString
-- destCapacity : INT -> Int32
-- status : UErrorCode* in/out -> Ptr Int32
-- 要 GHC(Windows)。stdcall は x64 では ccall として扱われる。ブロックする API は safe 呼び出し推奨。
open Ctypes
open Foreign

let uspoof_getskeletonutf8 =
  foreign "uspoof_getSkeletonUTF8"
    ((ptr intptr_t) @-> uint32_t @-> string @-> int32_t @-> string @-> int32_t @-> (ptr int32_t) @-> returning int32_t)
(* sc : USpoofChecker* -> (ptr intptr_t) *)
(* type : DWORD -> uint32_t *)
(* id : LPCSTR -> string *)
(* length : INT -> int32_t *)
(* dest : LPSTR -> string *)
(* destCapacity : INT -> int32_t *)
(* status : UErrorCode* in/out -> (ptr int32_t) *)
(* foreign は cdecl 前提。x64 Windows では WINAPI と一致。構造体は ctypes structure を定義のこと。 *)
(cffi:define-foreign-library icuin (t "icuin.dll"))
(cffi:use-foreign-library icuin)

(cffi:defcfun ("uspoof_getSkeletonUTF8" uspoof-get-skeleton-utf8 :convention :cdecl) :int32
  (sc :pointer)   ; USpoofChecker*
  (type :uint32)   ; DWORD
  (id :string)   ; LPCSTR
  (length :int32)   ; INT
  (dest :string)   ; LPSTR
  (dest-capacity :int32)   ; INT
  (status :pointer))   ; UErrorCode* in/out
; isize/usize(INT_PTR/SIZE_T)は x64 前提で :int64/:uint64。x86 では :int32/:uint32。
use Win32::API;
my $uspoof_getSkeletonUTF8 = Win32::API::More->new('icuin',
    'int uspoof_getSkeletonUTF8(LPVOID sc, DWORD type, LPCSTR id, int length, LPCSTR dest, int destCapacity, LPVOID status)');
# my $ret = $uspoof_getSkeletonUTF8->Call($sc, $type, $id, $length, $dest, $destCapacity, $status);
# sc : USpoofChecker* -> LPVOID
# type : DWORD -> DWORD
# id : LPCSTR -> LPCSTR
# length : INT -> int
# dest : LPSTR -> LPCSTR
# destCapacity : INT -> int
# status : UErrorCode* in/out -> LPVOID
# 値渡し構造体は pack() した文字列、または Win32::API::Struct を使用。

関連項目

使用する型