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

CollectionsListCopyAndMarshall

関数
コレクションリストをコピーしマーシャリングする。
DLLSensorsUtilsV2.dll呼出規約winapi

シグネチャ

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

NTSTATUS CollectionsListCopyAndMarshall(
    SENSOR_COLLECTION_LIST* Target,
    const SENSOR_COLLECTION_LIST* Source
);

パラメーター

名前方向
TargetSENSOR_COLLECTION_LIST*inout
SourceSENSOR_COLLECTION_LIST*in

戻り値の型: NTSTATUS

各言語での呼び出し定義

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

NTSTATUS CollectionsListCopyAndMarshall(
    SENSOR_COLLECTION_LIST* Target,
    const SENSOR_COLLECTION_LIST* Source
);
[DllImport("SensorsUtilsV2.dll", ExactSpelling = true)]
static extern int CollectionsListCopyAndMarshall(
    IntPtr Target,   // SENSOR_COLLECTION_LIST* in/out
    IntPtr Source   // SENSOR_COLLECTION_LIST*
);
<DllImport("SensorsUtilsV2.dll", ExactSpelling:=True)>
Public Shared Function CollectionsListCopyAndMarshall(
    Target As IntPtr,   ' SENSOR_COLLECTION_LIST* in/out
    Source As IntPtr   ' SENSOR_COLLECTION_LIST*
) As Integer
End Function
' Target : SENSOR_COLLECTION_LIST* in/out
' Source : SENSOR_COLLECTION_LIST*
Declare PtrSafe Function CollectionsListCopyAndMarshall Lib "sensorsutilsv2" ( _
    ByVal Target As LongPtr, _
    ByVal Source As LongPtr) As Long
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。
import ctypes
from ctypes import wintypes

CollectionsListCopyAndMarshall = ctypes.windll.sensorsutilsv2.CollectionsListCopyAndMarshall
CollectionsListCopyAndMarshall.restype = ctypes.c_int
CollectionsListCopyAndMarshall.argtypes = [
    ctypes.c_void_p,  # Target : SENSOR_COLLECTION_LIST* in/out
    ctypes.c_void_p,  # Source : SENSOR_COLLECTION_LIST*
]
require 'fiddle'
require 'fiddle/import'

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

var (
	sensorsutilsv2 = windows.NewLazySystemDLL("SensorsUtilsV2.dll")
	procCollectionsListCopyAndMarshall = sensorsutilsv2.NewProc("CollectionsListCopyAndMarshall")
)

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