Win32 API 日本語リファレンス
ホームDevices.Sensors › CollectionsListGetMarshalledSize

CollectionsListGetMarshalledSize

関数
コレクションリストのマーシャリング後のサイズを取得する。
DLLSensorsUtilsV2.dll呼出規約winapi

シグネチャ

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

DWORD CollectionsListGetMarshalledSize(
    const SENSOR_COLLECTION_LIST* Collection
);

パラメーター

名前方向説明
CollectionSENSOR_COLLECTION_LIST*inマーシャリング後のサイズを算出する対象のコレクションリストへのポインタ。

戻り値の型: DWORD

各言語での呼び出し定義

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

DWORD CollectionsListGetMarshalledSize(
    const SENSOR_COLLECTION_LIST* Collection
);
[DllImport("SensorsUtilsV2.dll", ExactSpelling = true)]
static extern uint CollectionsListGetMarshalledSize(
    IntPtr Collection   // SENSOR_COLLECTION_LIST*
);
<DllImport("SensorsUtilsV2.dll", ExactSpelling:=True)>
Public Shared Function CollectionsListGetMarshalledSize(
    Collection As IntPtr   ' SENSOR_COLLECTION_LIST*
) As UInteger
End Function
' Collection : SENSOR_COLLECTION_LIST*
Declare PtrSafe Function CollectionsListGetMarshalledSize 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

CollectionsListGetMarshalledSize = ctypes.windll.sensorsutilsv2.CollectionsListGetMarshalledSize
CollectionsListGetMarshalledSize.restype = wintypes.DWORD
CollectionsListGetMarshalledSize.argtypes = [
    ctypes.c_void_p,  # Collection : SENSOR_COLLECTION_LIST*
]
require 'fiddle'
require 'fiddle/import'

lib = Fiddle.dlopen('SensorsUtilsV2.dll')
CollectionsListGetMarshalledSize = Fiddle::Function.new(
  lib['CollectionsListGetMarshalledSize'],
  [
    Fiddle::TYPE_VOIDP,  # Collection : SENSOR_COLLECTION_LIST*
  ],
  -Fiddle::TYPE_INT)
#[link(name = "sensorsutilsv2")]
extern "system" {
    fn CollectionsListGetMarshalledSize(
        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 CollectionsListGetMarshalledSize(IntPtr Collection);
"@
$api = Add-Type -MemberDefinition $sig -Name 'SensorsUtilsV2_CollectionsListGetMarshalledSize' -Namespace Win32 -PassThru
# $api::CollectionsListGetMarshalledSize(Collection)
#uselib "SensorsUtilsV2.dll"
#func global CollectionsListGetMarshalledSize "CollectionsListGetMarshalledSize" sptr
; CollectionsListGetMarshalledSize varptr(Collection)   ; 戻り値は stat
; Collection : SENSOR_COLLECTION_LIST* -> "sptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。
出力引数:
#uselib "SensorsUtilsV2.dll"
#cfunc global CollectionsListGetMarshalledSize "CollectionsListGetMarshalledSize" var
; res = CollectionsListGetMarshalledSize(Collection)
; Collection : SENSOR_COLLECTION_LIST* -> "var"
; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。
出力引数:
; DWORD CollectionsListGetMarshalledSize(SENSOR_COLLECTION_LIST* Collection)
#uselib "SensorsUtilsV2.dll"
#cfunc global CollectionsListGetMarshalledSize "CollectionsListGetMarshalledSize" var
; res = CollectionsListGetMarshalledSize(Collection)
; Collection : SENSOR_COLLECTION_LIST* -> "var"
; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。
import (
	"golang.org/x/sys/windows"
	"unsafe"
)

var (
	sensorsutilsv2 = windows.NewLazySystemDLL("SensorsUtilsV2.dll")
	procCollectionsListGetMarshalledSize = sensorsutilsv2.NewProc("CollectionsListGetMarshalledSize")
)

// Collection (SENSOR_COLLECTION_LIST*)
r1, _, err := procCollectionsListGetMarshalledSize.Call(
	uintptr(Collection),
)
_ = err  // syscall.Errno (valid when the call sets last-error)
_ = r1   // DWORD
function CollectionsListGetMarshalledSize(
  Collection: Pointer   // SENSOR_COLLECTION_LIST*
): DWORD; stdcall;
  external 'SensorsUtilsV2.dll' name 'CollectionsListGetMarshalledSize';
result := DllCall("SensorsUtilsV2\CollectionsListGetMarshalledSize"
    , "Ptr", Collection   ; SENSOR_COLLECTION_LIST*
    , "UInt")   ; return: DWORD
●CollectionsListGetMarshalledSize(Collection) = DLL("SensorsUtilsV2.dll", "dword CollectionsListGetMarshalledSize(void*)")
# 呼び出し: CollectionsListGetMarshalledSize(Collection)
# Collection : SENSOR_COLLECTION_LIST* -> "void*"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。