ホーム › Devices.Sensors › CollectionsListGetMarshalledSizeWithoutSerialization
CollectionsListGetMarshalledSizeWithoutSerialization
関数シリアライズせずにコレクションリストのマーシャリングサイズを取得する。
シグネチャ
// SensorsUtilsV2.dll
#include <windows.h>
DWORD CollectionsListGetMarshalledSizeWithoutSerialization(
const SENSOR_COLLECTION_LIST* Collection
);パラメーター
| 名前 | 型 | 方向 |
|---|---|---|
| Collection | SENSOR_COLLECTION_LIST* | in |
戻り値の型: DWORD
各言語での呼び出し定義
// SensorsUtilsV2.dll
#include <windows.h>
DWORD CollectionsListGetMarshalledSizeWithoutSerialization(
const SENSOR_COLLECTION_LIST* Collection
);[DllImport("SensorsUtilsV2.dll", ExactSpelling = true)]
static extern uint CollectionsListGetMarshalledSizeWithoutSerialization(
IntPtr Collection // SENSOR_COLLECTION_LIST*
);<DllImport("SensorsUtilsV2.dll", ExactSpelling:=True)>
Public Shared Function CollectionsListGetMarshalledSizeWithoutSerialization(
Collection As IntPtr ' SENSOR_COLLECTION_LIST*
) As UInteger
End Function' Collection : SENSOR_COLLECTION_LIST*
Declare PtrSafe Function CollectionsListGetMarshalledSizeWithoutSerialization Lib "sensorsutilsv2" ( _
ByVal Collection As LongPtr) As Long
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。import ctypes
from ctypes import wintypes
CollectionsListGetMarshalledSizeWithoutSerialization = ctypes.windll.sensorsutilsv2.CollectionsListGetMarshalledSizeWithoutSerialization
CollectionsListGetMarshalledSizeWithoutSerialization.restype = wintypes.DWORD
CollectionsListGetMarshalledSizeWithoutSerialization.argtypes = [
ctypes.c_void_p, # Collection : SENSOR_COLLECTION_LIST*
]require 'fiddle'
require 'fiddle/import'
lib = Fiddle.dlopen('SensorsUtilsV2.dll')
CollectionsListGetMarshalledSizeWithoutSerialization = Fiddle::Function.new(
lib['CollectionsListGetMarshalledSizeWithoutSerialization'],
[
Fiddle::TYPE_VOIDP, # Collection : SENSOR_COLLECTION_LIST*
],
-Fiddle::TYPE_INT)#[link(name = "sensorsutilsv2")]
extern "system" {
fn CollectionsListGetMarshalledSizeWithoutSerialization(
Collection: *const SENSOR_COLLECTION_LIST // SENSOR_COLLECTION_LIST*
) -> u32;
}
// crates: windows-sys provides ready-made bindings for this API.$sig = @"
[DllImport("SensorsUtilsV2.dll")]
public static extern uint CollectionsListGetMarshalledSizeWithoutSerialization(IntPtr Collection);
"@
$api = Add-Type -MemberDefinition $sig -Name 'SensorsUtilsV2_CollectionsListGetMarshalledSizeWithoutSerialization' -Namespace Win32 -PassThru
# $api::CollectionsListGetMarshalledSizeWithoutSerialization(Collection)#uselib "SensorsUtilsV2.dll"
#func global CollectionsListGetMarshalledSizeWithoutSerialization "CollectionsListGetMarshalledSizeWithoutSerialization" sptr
; CollectionsListGetMarshalledSizeWithoutSerialization varptr(Collection) ; 戻り値は stat
; Collection : SENSOR_COLLECTION_LIST* -> "sptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。出力引数:
#uselib "SensorsUtilsV2.dll" #cfunc global CollectionsListGetMarshalledSizeWithoutSerialization "CollectionsListGetMarshalledSizeWithoutSerialization" var ; res = CollectionsListGetMarshalledSizeWithoutSerialization(Collection) ; Collection : SENSOR_COLLECTION_LIST* -> "var" ; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。#uselib "SensorsUtilsV2.dll" #cfunc global CollectionsListGetMarshalledSizeWithoutSerialization "CollectionsListGetMarshalledSizeWithoutSerialization" sptr ; res = CollectionsListGetMarshalledSizeWithoutSerialization(varptr(Collection)) ; Collection : SENSOR_COLLECTION_LIST* -> "sptr" ; ※出力/バッファ引数はポインタ方式(token=sptr / 呼び出しは varptr(変数))。
出力引数:
; DWORD CollectionsListGetMarshalledSizeWithoutSerialization(SENSOR_COLLECTION_LIST* Collection) #uselib "SensorsUtilsV2.dll" #cfunc global CollectionsListGetMarshalledSizeWithoutSerialization "CollectionsListGetMarshalledSizeWithoutSerialization" var ; res = CollectionsListGetMarshalledSizeWithoutSerialization(Collection) ; Collection : SENSOR_COLLECTION_LIST* -> "var" ; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。; DWORD CollectionsListGetMarshalledSizeWithoutSerialization(SENSOR_COLLECTION_LIST* Collection) #uselib "SensorsUtilsV2.dll" #cfunc global CollectionsListGetMarshalledSizeWithoutSerialization "CollectionsListGetMarshalledSizeWithoutSerialization" intptr ; res = CollectionsListGetMarshalledSizeWithoutSerialization(varptr(Collection)) ; Collection : SENSOR_COLLECTION_LIST* -> "intptr" ; ※出力/バッファ引数はポインタ方式(token=intptr / 呼び出しは varptr(変数))。
import (
"golang.org/x/sys/windows"
"unsafe"
)
var (
sensorsutilsv2 = windows.NewLazySystemDLL("SensorsUtilsV2.dll")
procCollectionsListGetMarshalledSizeWithoutSerialization = sensorsutilsv2.NewProc("CollectionsListGetMarshalledSizeWithoutSerialization")
)
// Collection (SENSOR_COLLECTION_LIST*)
r1, _, err := procCollectionsListGetMarshalledSizeWithoutSerialization.Call(
uintptr(Collection),
)
_ = err // syscall.Errno (valid when the call sets last-error)
_ = r1 // DWORDfunction CollectionsListGetMarshalledSizeWithoutSerialization(
Collection: Pointer // SENSOR_COLLECTION_LIST*
): DWORD; stdcall;
external 'SensorsUtilsV2.dll' name 'CollectionsListGetMarshalledSizeWithoutSerialization';result := DllCall("SensorsUtilsV2\CollectionsListGetMarshalledSizeWithoutSerialization"
, "Ptr", Collection ; SENSOR_COLLECTION_LIST*
, "UInt") ; return: DWORD●CollectionsListGetMarshalledSizeWithoutSerialization(Collection) = DLL("SensorsUtilsV2.dll", "dword CollectionsListGetMarshalledSizeWithoutSerialization(void*)")
# 呼び出し: CollectionsListGetMarshalledSizeWithoutSerialization(Collection)
# Collection : SENSOR_COLLECTION_LIST* -> "void*"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。