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

ucol_getOffset

関数
照合要素イテレータの現在のオフセットを取得する。
DLLicuin.dll呼出規約cdecl

シグネチャ

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

INT ucol_getOffset(
    const UCollationElements* elems
);

パラメーター

名前方向説明
elemsUCollationElements*in現在の反復オフセットを取得する照合要素イテレータのハンドル。

戻り値の型: INT

各言語での呼び出し定義

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

INT ucol_getOffset(
    const UCollationElements* elems
);
[DllImport("icuin.dll", ExactSpelling = true, CallingConvention = CallingConvention.Cdecl)]
static extern int ucol_getOffset(
    ref IntPtr elems   // UCollationElements*
);
<DllImport("icuin.dll", ExactSpelling:=True, CallingConvention:=CallingConvention.Cdecl)>
Public Shared Function ucol_getOffset(
    ByRef elems As IntPtr   ' UCollationElements*
) As Integer
End Function
' elems : UCollationElements*
Declare PtrSafe Function ucol_getOffset Lib "icuin" ( _
    ByRef elems As LongPtr) As Long
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。
import ctypes
from ctypes import wintypes

ucol_getOffset = ctypes.cdll.icuin.ucol_getOffset
ucol_getOffset.restype = ctypes.c_int
ucol_getOffset.argtypes = [
    ctypes.c_void_p,  # elems : UCollationElements*
]
require 'fiddle'
require 'fiddle/import'

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

var (
	icuin = windows.NewLazySystemDLL("icuin.dll")
	procucol_getOffset = icuin.NewProc("ucol_getOffset")
)

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

extern "icuin" fn ucol_getOffset(
    elems: [*c]isize // UCollationElements*
) callconv(.c) i32;
proc ucol_getOffset(
    elems: ptr int  # UCollationElements*
): int32 {.importc: "ucol_getOffset", cdecl, dynlib: "icuin.dll".}
pragma(lib, "icuin");
extern(C)
int ucol_getOffset(
    ptrdiff_t* elems   // UCollationElements*
);
ccall((:ucol_getOffset, "icuin.dll"), Int32,
      (Ptr{Int},),
      elems)
# elems : UCollationElements* -> Ptr{Int}
local ffi = require("ffi")
ffi.cdef[[
int32_t ucol_getOffset(
    intptr_t* elems);
]]
local icuin = ffi.load("icuin")
-- icuin.ucol_getOffset(elems)
-- elems : UCollationElements*
-- 構造体/GUIDへのポインタは cdef が通るよう void* で表記(実型は各引数コメント参照)。値渡し構造体・enum は対応する typedef を cdef に追加すること。
const koffi = require('koffi');
const lib = koffi.load('icuin.dll');
const ucol_getOffset = lib.func('__cdecl', 'ucol_getOffset', 'int32_t', ['intptr_t *']);
// ucol_getOffset(elems)
// elems : UCollationElements* -> 'intptr_t *'
// 出力ポインタは koffi.out(...) で包む。構造体は koffi.struct で定義。
const lib = Deno.dlopen("icuin.dll", {
  ucol_getOffset: { parameters: ["pointer"], result: "i32" },
});
// lib.symbols.ucol_getOffset(elems)
// elems : UCollationElements* -> "pointer"
// 文字列引数は "buffer"(NUL 終端のバイト列を Uint8Array で渡す)。
// 値渡し構造体は { struct: [ ...field types... ] } を使用。
<?php
$ffi = FFI::cdef(<<<C
int32_t ucol_getOffset(
    intptr_t* elems);
C, "icuin.dll");
// $ffi->ucol_getOffset(elems);
// elems : UCollationElements*
// 構造体/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 ucol_getOffset(
        LongByReference elems   // UCollationElements*
    );
}
@[Link("icuin")]
lib Libicuin
  fun ucol_getOffset = ucol_getOffset(
    elems : LibC::SSizeT*   # UCollationElements*
  ) : Int32
end
# 構造体/GUID/enum は lib 内に対応する型定義が必要。
import 'dart:ffi';
import 'package:ffi/ffi.dart';

typedef ucol_getOffsetNative = Int32 Function(Pointer<IntPtr>);
typedef ucol_getOffsetDart = int Function(Pointer<IntPtr>);
final ucol_getOffset = DynamicLibrary.open('icuin.dll')
    .lookupFunction<ucol_getOffsetNative, ucol_getOffsetDart>('ucol_getOffset');
// elems : UCollationElements* -> Pointer<IntPtr>
// 文字列は package:ffi の "...".toNativeUtf16()/toNativeUtf8() で変換。
{$mode objfpc}{$H+}
function ucol_getOffset(
  elems: Pointer   // UCollationElements*
): Integer; cdecl;
  external 'icuin.dll' name 'ucol_getOffset';
import Foreign
import Foreign.C.Types
import Foreign.C.String

foreign import ccall safe "ucol_getOffset"
  c_ucol_getOffset :: Ptr CIntPtr -> IO Int32
-- elems : UCollationElements* -> Ptr CIntPtr
-- 要 GHC(Windows)。stdcall は x64 では ccall として扱われる。ブロックする API は safe 呼び出し推奨。
open Ctypes
open Foreign

let ucol_getoffset =
  foreign "ucol_getOffset"
    ((ptr intptr_t) @-> returning int32_t)
(* elems : UCollationElements* -> (ptr intptr_t) *)
(* foreign は cdecl 前提。x64 Windows では WINAPI と一致。構造体は ctypes structure を定義のこと。 *)
(cffi:define-foreign-library icuin (t "icuin.dll"))
(cffi:use-foreign-library icuin)

(cffi:defcfun ("ucol_getOffset" ucol-get-offset :convention :cdecl) :int32
  (elems :pointer))   ; UCollationElements*
; isize/usize(INT_PTR/SIZE_T)は x64 前提で :int64/:uint64。x86 では :int32/:uint32。
use Win32::API;
my $ucol_getOffset = Win32::API::More->new('icuin',
    'int ucol_getOffset(LPVOID elems)');
# my $ret = $ucol_getOffset->Call($elems);
# elems : UCollationElements* -> LPVOID
# 値渡し構造体は pack() した文字列、または Win32::API::Struct を使用。