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

ucfpos_setInt64IterationContext

関数
フィールド位置の64ビット反復コンテキストを設定する。
DLLicu.dll呼出規約cdecl

シグネチャ

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

void ucfpos_setInt64IterationContext(
    UConstrainedFieldPosition* ucfpos,
    LONGLONG context,
    UErrorCode* ec
);

パラメーター

名前方向説明
ucfposUConstrainedFieldPosition*inout反復コンテキストを設定する制約付きフィールド位置オブジェクトのハンドル。
contextLONGLONGin設定する64ビットの反復コンテキスト値。
ecUErrorCode*inoutエラーコードへのポインタ。呼び出し前に初期化する必要がある。

戻り値の型: void

各言語での呼び出し定義

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

void ucfpos_setInt64IterationContext(
    UConstrainedFieldPosition* ucfpos,
    LONGLONG context,
    UErrorCode* ec
);
[DllImport("icu.dll", ExactSpelling = true, CallingConvention = CallingConvention.Cdecl)]
static extern void ucfpos_setInt64IterationContext(
    ref IntPtr ucfpos,   // UConstrainedFieldPosition* in/out
    long context,   // LONGLONG
    ref int ec   // UErrorCode* in/out
);
<DllImport("icu.dll", ExactSpelling:=True, CallingConvention:=CallingConvention.Cdecl)>
Public Shared Sub ucfpos_setInt64IterationContext(
    ByRef ucfpos As IntPtr,   ' UConstrainedFieldPosition* in/out
    context As Long,   ' LONGLONG
    ByRef ec As Integer   ' UErrorCode* in/out
)
End Sub
' ucfpos : UConstrainedFieldPosition* in/out
' context : LONGLONG
' ec : UErrorCode* in/out
Declare PtrSafe Sub ucfpos_setInt64IterationContext Lib "icu" ( _
    ByRef ucfpos As LongPtr, _
    ByVal context As LongLong, _
    ByRef ec As Long)
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。
import ctypes
from ctypes import wintypes

ucfpos_setInt64IterationContext = ctypes.cdll.icu.ucfpos_setInt64IterationContext
ucfpos_setInt64IterationContext.restype = None
ucfpos_setInt64IterationContext.argtypes = [
    ctypes.c_void_p,  # ucfpos : UConstrainedFieldPosition* in/out
    ctypes.c_longlong,  # context : LONGLONG
    ctypes.c_void_p,  # ec : UErrorCode* in/out
]
require 'fiddle'
require 'fiddle/import'

lib = Fiddle.dlopen('icu.dll')
ucfpos_setInt64IterationContext = Fiddle::Function.new(
  lib['ucfpos_setInt64IterationContext'],
  [
    Fiddle::TYPE_VOIDP,  # ucfpos : UConstrainedFieldPosition* in/out
    Fiddle::TYPE_LONG_LONG,  # context : LONGLONG
    Fiddle::TYPE_VOIDP,  # ec : UErrorCode* in/out
  ],
  Fiddle::TYPE_VOID, Fiddle::Function::CDECL)
#[link(name = "icu")]
extern "C" {
    fn ucfpos_setInt64IterationContext(
        ucfpos: *mut isize,  // UConstrainedFieldPosition* in/out
        context: i64,  // LONGLONG
        ec: *mut i32  // UErrorCode* in/out
    );
}
// crates: windows-sys provides ready-made bindings for this API.
$sig = @"
[DllImport("icu.dll", CallingConvention = CallingConvention.Cdecl)]
public static extern void ucfpos_setInt64IterationContext(ref IntPtr ucfpos, long context, ref int ec);
"@
$api = Add-Type -MemberDefinition $sig -Name 'icu_ucfpos_setInt64IterationContext' -Namespace Win32 -PassThru
# $api::ucfpos_setInt64IterationContext(ucfpos, context, ec)
#uselib "icu.dll"
#func global ucfpos_setInt64IterationContext "ucfpos_setInt64IterationContext" sptr, sptr, sptr
; ucfpos_setInt64IterationContext varptr(ucfpos), context, varptr(ec)
; ucfpos : UConstrainedFieldPosition* in/out -> "sptr"
; context : LONGLONG -> "sptr"
; ec : UErrorCode* in/out -> "sptr"
; ※HSP3.7は int64 引数(64bit値渡し)に非対応です。
出力引数:
#uselib "icu.dll"
#func global ucfpos_setInt64IterationContext "ucfpos_setInt64IterationContext" var, int64, var
; ucfpos_setInt64IterationContext ucfpos, context, ec
; ucfpos : UConstrainedFieldPosition* in/out -> "var"
; context : LONGLONG -> "int64"
; ec : UErrorCode* in/out -> "var"
; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。
; ※int64 引数の DLL 値渡しは x64 ランタイム(hsp3_64)のみ対応(x86 は未対応)。
出力引数:
; void ucfpos_setInt64IterationContext(UConstrainedFieldPosition* ucfpos, LONGLONG context, UErrorCode* ec)
#uselib "icu.dll"
#func global ucfpos_setInt64IterationContext "ucfpos_setInt64IterationContext" var, int64, var
; ucfpos_setInt64IterationContext ucfpos, context, ec
; ucfpos : UConstrainedFieldPosition* in/out -> "var"
; context : LONGLONG -> "int64"
; ec : UErrorCode* in/out -> "var"
; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。
import (
	"golang.org/x/sys/windows"
	"unsafe"
)

var (
	icu = windows.NewLazySystemDLL("icu.dll")
	procucfpos_setInt64IterationContext = icu.NewProc("ucfpos_setInt64IterationContext")
)

// ucfpos (UConstrainedFieldPosition* in/out), context (LONGLONG), ec (UErrorCode* in/out)
r1, _, err := procucfpos_setInt64IterationContext.Call(
	uintptr(ucfpos),
	uintptr(context),
	uintptr(ec),
)
_ = err  // syscall.Errno (valid when the call sets last-error)
_ = r1   // void
procedure ucfpos_setInt64IterationContext(
  ucfpos: Pointer;   // UConstrainedFieldPosition* in/out
  context: Int64;   // LONGLONG
  ec: Pointer   // UErrorCode* in/out
); cdecl;
  external 'icu.dll' name 'ucfpos_setInt64IterationContext';
result := DllCall("icu\ucfpos_setInt64IterationContext"
    , "Ptr", ucfpos   ; UConstrainedFieldPosition* in/out
    , "Int64", context   ; LONGLONG
    , "Ptr", ec   ; UErrorCode* in/out
    , "Cdecl Int")   ; return: void
●ucfpos_setInt64IterationContext(ucfpos, context, ec) = DLL("icu.dll", "int ucfpos_setInt64IterationContext(void*, int64, void*)")
# 呼び出し: ucfpos_setInt64IterationContext(ucfpos, context, ec)
# ucfpos : UConstrainedFieldPosition* in/out -> "void*"
# context : LONGLONG -> "int64"
# 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 ucfpos_setInt64IterationContext(
    ucfpos: [*c]isize, // UConstrainedFieldPosition* in/out
    context: i64, // LONGLONG
    ec: [*c]i32 // UErrorCode* in/out
) callconv(.c) void;
proc ucfpos_setInt64IterationContext(
    ucfpos: ptr int,  # UConstrainedFieldPosition* in/out
    context: int64,  # LONGLONG
    ec: ptr int32  # UErrorCode* in/out
) {.importc: "ucfpos_setInt64IterationContext", cdecl, dynlib: "icu.dll".}
pragma(lib, "icu");
extern(C)
void ucfpos_setInt64IterationContext(
    ptrdiff_t* ucfpos,   // UConstrainedFieldPosition* in/out
    long context,   // LONGLONG
    int* ec   // UErrorCode* in/out
);
ccall((:ucfpos_setInt64IterationContext, "icu.dll"), Cvoid,
      (Ptr{Int}, Int64, Ptr{Int32}),
      ucfpos, context, ec)
# ucfpos : UConstrainedFieldPosition* in/out -> Ptr{Int}
# context : LONGLONG -> Int64
# ec : UErrorCode* in/out -> Ptr{Int32}
local ffi = require("ffi")
ffi.cdef[[
void ucfpos_setInt64IterationContext(
    intptr_t* ucfpos,
    int64_t context,
    int32_t* ec);
]]
local icu = ffi.load("icu")
-- icu.ucfpos_setInt64IterationContext(ucfpos, context, ec)
-- ucfpos : UConstrainedFieldPosition* in/out
-- context : LONGLONG
-- ec : UErrorCode* in/out
-- 構造体/GUIDへのポインタは cdef が通るよう void* で表記(実型は各引数コメント参照)。値渡し構造体・enum は対応する typedef を cdef に追加すること。
const koffi = require('koffi');
const lib = koffi.load('icu.dll');
const ucfpos_setInt64IterationContext = lib.func('__cdecl', 'ucfpos_setInt64IterationContext', 'void', ['intptr_t *', 'int64_t', 'int32_t *']);
// ucfpos_setInt64IterationContext(ucfpos, context, ec)
// ucfpos : UConstrainedFieldPosition* in/out -> 'intptr_t *'
// context : LONGLONG -> 'int64_t'
// ec : UErrorCode* in/out -> 'int32_t *'
// 出力ポインタは koffi.out(...) で包む。構造体は koffi.struct で定義。
const lib = Deno.dlopen("icu.dll", {
  ucfpos_setInt64IterationContext: { parameters: ["pointer", "i64", "pointer"], result: "void" },
});
// lib.symbols.ucfpos_setInt64IterationContext(ucfpos, context, ec)
// ucfpos : UConstrainedFieldPosition* in/out -> "pointer"
// context : LONGLONG -> "i64"
// ec : UErrorCode* in/out -> "pointer"
// 文字列引数は "buffer"(NUL 終端のバイト列を Uint8Array で渡す)。
// 値渡し構造体は { struct: [ ...field types... ] } を使用。
<?php
$ffi = FFI::cdef(<<<C
void ucfpos_setInt64IterationContext(
    intptr_t* ucfpos,
    int64_t context,
    int32_t* ec);
C, "icu.dll");
// $ffi->ucfpos_setInt64IterationContext(ucfpos, context, ec);
// ucfpos : UConstrainedFieldPosition* in/out
// context : LONGLONG
// 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);
    void ucfpos_setInt64IterationContext(
        LongByReference ucfpos,   // UConstrainedFieldPosition* in/out
        long context,   // LONGLONG
        IntByReference ec   // UErrorCode* in/out
    );
}
@[Link("icu")]
lib Libicu
  fun ucfpos_setInt64IterationContext = ucfpos_setInt64IterationContext(
    ucfpos : LibC::SSizeT*,   # UConstrainedFieldPosition* in/out
    context : Int64,   # LONGLONG
    ec : Int32*   # UErrorCode* in/out
  ) : Void
end
# 構造体/GUID/enum は lib 内に対応する型定義が必要。
import 'dart:ffi';
import 'package:ffi/ffi.dart';

typedef ucfpos_setInt64IterationContextNative = Void Function(Pointer<IntPtr>, Int64, Pointer<Int32>);
typedef ucfpos_setInt64IterationContextDart = void Function(Pointer<IntPtr>, int, Pointer<Int32>);
final ucfpos_setInt64IterationContext = DynamicLibrary.open('icu.dll')
    .lookupFunction<ucfpos_setInt64IterationContextNative, ucfpos_setInt64IterationContextDart>('ucfpos_setInt64IterationContext');
// ucfpos : UConstrainedFieldPosition* in/out -> Pointer<IntPtr>
// context : LONGLONG -> Int64
// ec : UErrorCode* in/out -> Pointer<Int32>
// 文字列は package:ffi の "...".toNativeUtf16()/toNativeUtf8() で変換。
{$mode objfpc}{$H+}
procedure ucfpos_setInt64IterationContext(
  ucfpos: Pointer;   // UConstrainedFieldPosition* in/out
  context: Int64;   // LONGLONG
  ec: Pointer   // UErrorCode* in/out
); cdecl;
  external 'icu.dll' name 'ucfpos_setInt64IterationContext';
import Foreign
import Foreign.C.Types
import Foreign.C.String

foreign import ccall safe "ucfpos_setInt64IterationContext"
  c_ucfpos_setInt64IterationContext :: Ptr CIntPtr -> Int64 -> Ptr Int32 -> IO ()
-- ucfpos : UConstrainedFieldPosition* in/out -> Ptr CIntPtr
-- context : LONGLONG -> Int64
-- ec : UErrorCode* in/out -> Ptr Int32
-- 要 GHC(Windows)。stdcall は x64 では ccall として扱われる。ブロックする API は safe 呼び出し推奨。
open Ctypes
open Foreign

let ucfpos_setint64iterationcontext =
  foreign "ucfpos_setInt64IterationContext"
    ((ptr intptr_t) @-> int64_t @-> (ptr int32_t) @-> returning void)
(* ucfpos : UConstrainedFieldPosition* in/out -> (ptr intptr_t) *)
(* context : LONGLONG -> int64_t *)
(* 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 ("ucfpos_setInt64IterationContext" ucfpos-set-int64-iteration-context :convention :cdecl) :void
  (ucfpos :pointer)   ; UConstrainedFieldPosition* in/out
  (context :int64)   ; LONGLONG
  (ec :pointer))   ; UErrorCode* in/out
; isize/usize(INT_PTR/SIZE_T)は x64 前提で :int64/:uint64。x86 では :int32/:uint32。
use Win32::API;
my $ucfpos_setInt64IterationContext = Win32::API::More->new('icu',
    'void ucfpos_setInt64IterationContext(LPVOID ucfpos, INT64 context, LPVOID ec)');
# my $ret = $ucfpos_setInt64IterationContext->Call($ucfpos, $context, $ec);
# ucfpos : UConstrainedFieldPosition* in/out -> LPVOID
# context : LONGLONG -> INT64
# ec : UErrorCode* in/out -> LPVOID
# 値渡し構造体は pack() した文字列、または Win32::API::Struct を使用。

関連項目

使用する型