ホーム › Globalization › uregex_getFindProgressCallback
uregex_getFindProgressCallback
関数検索進捗を通知するコールバックを取得する。
シグネチャ
// icuin.dll
#include <windows.h>
void uregex_getFindProgressCallback(
const URegularExpression* regexp,
URegexFindProgressCallback* callback,
const void** context,
UErrorCode* status
);パラメーター
| 名前 | 型 | 方向 |
|---|---|---|
| regexp | URegularExpression* | in |
| callback | URegexFindProgressCallback* | inout |
| context | void** | in |
| status | UErrorCode* | inout |
戻り値の型: void
各言語での呼び出し定義
// icuin.dll
#include <windows.h>
void uregex_getFindProgressCallback(
const URegularExpression* regexp,
URegexFindProgressCallback* callback,
const void** context,
UErrorCode* status
);[DllImport("icuin.dll", ExactSpelling = true, CallingConvention = CallingConvention.Cdecl)]
static extern void uregex_getFindProgressCallback(
ref IntPtr regexp, // URegularExpression*
IntPtr callback, // URegexFindProgressCallback* in/out
IntPtr context, // void**
ref int status // UErrorCode* in/out
);<DllImport("icuin.dll", ExactSpelling:=True, CallingConvention:=CallingConvention.Cdecl)>
Public Shared Sub uregex_getFindProgressCallback(
ByRef regexp As IntPtr, ' URegularExpression*
callback As IntPtr, ' URegexFindProgressCallback* in/out
context As IntPtr, ' void**
ByRef status As Integer ' UErrorCode* in/out
)
End Sub' regexp : URegularExpression*
' callback : URegexFindProgressCallback* in/out
' context : void**
' status : UErrorCode* in/out
Declare PtrSafe Sub uregex_getFindProgressCallback Lib "icuin" ( _
ByRef regexp As LongPtr, _
ByVal callback As LongPtr, _
ByVal context As LongPtr, _
ByRef status As Long)
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。import ctypes
from ctypes import wintypes
uregex_getFindProgressCallback = ctypes.cdll.icuin.uregex_getFindProgressCallback
uregex_getFindProgressCallback.restype = None
uregex_getFindProgressCallback.argtypes = [
ctypes.c_void_p, # regexp : URegularExpression*
ctypes.c_void_p, # callback : URegexFindProgressCallback* in/out
ctypes.c_void_p, # context : void**
ctypes.c_void_p, # status : UErrorCode* in/out
]require 'fiddle'
require 'fiddle/import'
lib = Fiddle.dlopen('icuin.dll')
uregex_getFindProgressCallback = Fiddle::Function.new(
lib['uregex_getFindProgressCallback'],
[
Fiddle::TYPE_VOIDP, # regexp : URegularExpression*
Fiddle::TYPE_VOIDP, # callback : URegexFindProgressCallback* in/out
Fiddle::TYPE_VOIDP, # context : void**
Fiddle::TYPE_VOIDP, # status : UErrorCode* in/out
],
Fiddle::TYPE_VOID, Fiddle::Function::CDECL)#[link(name = "icuin")]
extern "C" {
fn uregex_getFindProgressCallback(
regexp: *const isize, // URegularExpression*
callback: *mut *const core::ffi::c_void, // URegexFindProgressCallback* in/out
context: *const *const (), // void**
status: *mut i32 // UErrorCode* in/out
);
}
// crates: windows-sys provides ready-made bindings for this API.$sig = @"
[DllImport("icuin.dll", CallingConvention = CallingConvention.Cdecl)]
public static extern void uregex_getFindProgressCallback(ref IntPtr regexp, IntPtr callback, IntPtr context, ref int status);
"@
$api = Add-Type -MemberDefinition $sig -Name 'icuin_uregex_getFindProgressCallback' -Namespace Win32 -PassThru
# $api::uregex_getFindProgressCallback(regexp, callback, context, status)#uselib "icuin.dll"
#func global uregex_getFindProgressCallback "uregex_getFindProgressCallback" sptr, sptr, sptr, sptr
; uregex_getFindProgressCallback regexp, callback, context, status
; regexp : URegularExpression* -> "sptr"
; callback : URegexFindProgressCallback* in/out -> "sptr"
; context : void** -> "sptr"
; status : UErrorCode* in/out -> "sptr"#uselib "icuin.dll"
#func global uregex_getFindProgressCallback "uregex_getFindProgressCallback" int, sptr, sptr, int
; uregex_getFindProgressCallback regexp, callback, context, status
; regexp : URegularExpression* -> "int"
; callback : URegexFindProgressCallback* in/out -> "sptr"
; context : void** -> "sptr"
; status : UErrorCode* in/out -> "int"; void uregex_getFindProgressCallback(URegularExpression* regexp, URegexFindProgressCallback* callback, void** context, UErrorCode* status)
#uselib "icuin.dll"
#func global uregex_getFindProgressCallback "uregex_getFindProgressCallback" int, intptr, intptr, int
; uregex_getFindProgressCallback regexp, callback, context, status
; regexp : URegularExpression* -> "int"
; callback : URegexFindProgressCallback* in/out -> "intptr"
; context : void** -> "intptr"
; status : UErrorCode* in/out -> "int"import (
"golang.org/x/sys/windows"
"unsafe"
)
var (
icuin = windows.NewLazySystemDLL("icuin.dll")
procuregex_getFindProgressCallback = icuin.NewProc("uregex_getFindProgressCallback")
)
// regexp (URegularExpression*), callback (URegexFindProgressCallback* in/out), context (void**), status (UErrorCode* in/out)
r1, _, err := procuregex_getFindProgressCallback.Call(
uintptr(regexp),
uintptr(callback),
uintptr(context),
uintptr(status),
)
_ = err // syscall.Errno (valid when the call sets last-error)
_ = r1 // voidprocedure uregex_getFindProgressCallback(
regexp: Pointer; // URegularExpression*
callback: Pointer; // URegexFindProgressCallback* in/out
context: Pointer; // void**
status: Pointer // UErrorCode* in/out
); cdecl;
external 'icuin.dll' name 'uregex_getFindProgressCallback';result := DllCall("icuin\uregex_getFindProgressCallback"
, "Ptr", regexp ; URegularExpression*
, "Ptr", callback ; URegexFindProgressCallback* in/out
, "Ptr", context ; void**
, "Ptr", status ; UErrorCode* in/out
, "Cdecl Int") ; return: void●uregex_getFindProgressCallback(regexp, callback, context, status) = DLL("icuin.dll", "int uregex_getFindProgressCallback(void*, void*, void*, void*)")
# 呼び出し: uregex_getFindProgressCallback(regexp, callback, context, status)
# regexp : URegularExpression* -> "void*"
# callback : URegexFindProgressCallback* in/out -> "void*"
# context : void** -> "void*"
# status : UErrorCode* in/out -> "void*"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。
# ※cdecl関数。DLL()宣言はstdcall前提。cdeclは EXEC_PTR(`cdecl`,…) を使用。