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