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

SetupDiGetCustomDevicePropertyA

関数
デバイスの指定したカスタムプロパティを取得する。
DLLSETUPAPI.dll文字セットANSI (-A)呼出規約winapiSetLastErrorあり対応OSWindows XP 以降

シグネチャ

// SETUPAPI.dll  (ANSI / -A)
#include <windows.h>

BOOL SetupDiGetCustomDevicePropertyA(
    HDEVINFO DeviceInfoSet,
    SP_DEVINFO_DATA* DeviceInfoData,
    LPCSTR CustomPropertyName,
    DWORD Flags,
    DWORD* PropertyRegDataType,   // optional
    BYTE* PropertyBuffer,
    DWORD PropertyBufferSize,
    DWORD* RequiredSize   // optional
);

パラメーター

名前方向
DeviceInfoSetHDEVINFOin
DeviceInfoDataSP_DEVINFO_DATA*in
CustomPropertyNameLPCSTRin
FlagsDWORDin
PropertyRegDataTypeDWORD*outoptional
PropertyBufferBYTE*out
PropertyBufferSizeDWORDin
RequiredSizeDWORD*outoptional

戻り値の型: BOOL

各言語での呼び出し定義

// SETUPAPI.dll  (ANSI / -A)
#include <windows.h>

BOOL SetupDiGetCustomDevicePropertyA(
    HDEVINFO DeviceInfoSet,
    SP_DEVINFO_DATA* DeviceInfoData,
    LPCSTR CustomPropertyName,
    DWORD Flags,
    DWORD* PropertyRegDataType,   // optional
    BYTE* PropertyBuffer,
    DWORD PropertyBufferSize,
    DWORD* RequiredSize   // optional
);
[return: MarshalAs(UnmanagedType.Bool)]
[DllImport("SETUPAPI.dll", CharSet = CharSet.Ansi, SetLastError = true, ExactSpelling = true)]
static extern bool SetupDiGetCustomDevicePropertyA(
    IntPtr DeviceInfoSet,   // HDEVINFO
    IntPtr DeviceInfoData,   // SP_DEVINFO_DATA*
    [MarshalAs(UnmanagedType.LPStr)] string CustomPropertyName,   // LPCSTR
    uint Flags,   // DWORD
    IntPtr PropertyRegDataType,   // DWORD* optional, out
    IntPtr PropertyBuffer,   // BYTE* out
    uint PropertyBufferSize,   // DWORD
    IntPtr RequiredSize   // DWORD* optional, out
);
<DllImport("SETUPAPI.dll", CharSet:=CharSet.Ansi, SetLastError:=True, ExactSpelling:=True)>
Public Shared Function SetupDiGetCustomDevicePropertyA(
    DeviceInfoSet As IntPtr,   ' HDEVINFO
    DeviceInfoData As IntPtr,   ' SP_DEVINFO_DATA*
    <MarshalAs(UnmanagedType.LPStr)> CustomPropertyName As String,   ' LPCSTR
    Flags As UInteger,   ' DWORD
    PropertyRegDataType As IntPtr,   ' DWORD* optional, out
    PropertyBuffer As IntPtr,   ' BYTE* out
    PropertyBufferSize As UInteger,   ' DWORD
    RequiredSize As IntPtr   ' DWORD* optional, out
) As Boolean
End Function
' DeviceInfoSet : HDEVINFO
' DeviceInfoData : SP_DEVINFO_DATA*
' CustomPropertyName : LPCSTR
' Flags : DWORD
' PropertyRegDataType : DWORD* optional, out
' PropertyBuffer : BYTE* out
' PropertyBufferSize : DWORD
' RequiredSize : DWORD* optional, out
Declare PtrSafe Function SetupDiGetCustomDevicePropertyA Lib "setupapi" ( _
    ByVal DeviceInfoSet As LongPtr, _
    ByVal DeviceInfoData As LongPtr, _
    ByVal CustomPropertyName As String, _
    ByVal Flags As Long, _
    ByVal PropertyRegDataType As LongPtr, _
    ByVal PropertyBuffer As LongPtr, _
    ByVal PropertyBufferSize As Long, _
    ByVal RequiredSize As LongPtr) As Long
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。
import ctypes
from ctypes import wintypes

SetupDiGetCustomDevicePropertyA = ctypes.windll.setupapi.SetupDiGetCustomDevicePropertyA
SetupDiGetCustomDevicePropertyA.restype = wintypes.BOOL
SetupDiGetCustomDevicePropertyA.argtypes = [
    ctypes.c_ssize_t,  # DeviceInfoSet : HDEVINFO
    ctypes.c_void_p,  # DeviceInfoData : SP_DEVINFO_DATA*
    wintypes.LPCSTR,  # CustomPropertyName : LPCSTR
    wintypes.DWORD,  # Flags : DWORD
    ctypes.POINTER(wintypes.DWORD),  # PropertyRegDataType : DWORD* optional, out
    ctypes.POINTER(ctypes.c_ubyte),  # PropertyBuffer : BYTE* out
    wintypes.DWORD,  # PropertyBufferSize : DWORD
    ctypes.POINTER(wintypes.DWORD),  # RequiredSize : DWORD* optional, out
]
# GetLastError: use ctypes.GetLastError() (or ctypes.WinDLL(use_last_error=True))
require 'fiddle'
require 'fiddle/import'

lib = Fiddle.dlopen('SETUPAPI.dll')
SetupDiGetCustomDevicePropertyA = Fiddle::Function.new(
  lib['SetupDiGetCustomDevicePropertyA'],
  [
    Fiddle::TYPE_INTPTR_T,  # DeviceInfoSet : HDEVINFO
    Fiddle::TYPE_VOIDP,  # DeviceInfoData : SP_DEVINFO_DATA*
    Fiddle::TYPE_VOIDP,  # CustomPropertyName : LPCSTR
    -Fiddle::TYPE_INT,  # Flags : DWORD
    Fiddle::TYPE_VOIDP,  # PropertyRegDataType : DWORD* optional, out
    Fiddle::TYPE_VOIDP,  # PropertyBuffer : BYTE* out
    -Fiddle::TYPE_INT,  # PropertyBufferSize : DWORD
    Fiddle::TYPE_VOIDP,  # RequiredSize : DWORD* optional, out
  ],
  Fiddle::TYPE_INT)
#[link(name = "setupapi")]
extern "system" {
    fn SetupDiGetCustomDevicePropertyA(
        DeviceInfoSet: isize,  // HDEVINFO
        DeviceInfoData: *mut SP_DEVINFO_DATA,  // SP_DEVINFO_DATA*
        CustomPropertyName: *const u8,  // LPCSTR
        Flags: u32,  // DWORD
        PropertyRegDataType: *mut u32,  // DWORD* optional, out
        PropertyBuffer: *mut u8,  // BYTE* out
        PropertyBufferSize: u32,  // DWORD
        RequiredSize: *mut u32  // DWORD* optional, out
    ) -> i32;
}
// crates: windows-sys provides ready-made bindings for this API.
$sig = @"
[return: MarshalAs(UnmanagedType.Bool)]
[DllImport("SETUPAPI.dll", CharSet = CharSet.Ansi, SetLastError = true)]
public static extern bool SetupDiGetCustomDevicePropertyA(IntPtr DeviceInfoSet, IntPtr DeviceInfoData, [MarshalAs(UnmanagedType.LPStr)] string CustomPropertyName, uint Flags, IntPtr PropertyRegDataType, IntPtr PropertyBuffer, uint PropertyBufferSize, IntPtr RequiredSize);
"@
$api = Add-Type -MemberDefinition $sig -Name 'SETUPAPI_SetupDiGetCustomDevicePropertyA' -Namespace Win32 -PassThru
# $api::SetupDiGetCustomDevicePropertyA(DeviceInfoSet, DeviceInfoData, CustomPropertyName, Flags, PropertyRegDataType, PropertyBuffer, PropertyBufferSize, RequiredSize)
#uselib "SETUPAPI.dll"
#func global SetupDiGetCustomDevicePropertyA "SetupDiGetCustomDevicePropertyA" sptr, sptr, sptr, sptr, sptr, sptr, sptr, sptr
; SetupDiGetCustomDevicePropertyA DeviceInfoSet, varptr(DeviceInfoData), CustomPropertyName, Flags, varptr(PropertyRegDataType), varptr(PropertyBuffer), PropertyBufferSize, varptr(RequiredSize)   ; 戻り値は stat
; DeviceInfoSet : HDEVINFO -> "sptr"
; DeviceInfoData : SP_DEVINFO_DATA* -> "sptr"
; CustomPropertyName : LPCSTR -> "sptr"
; Flags : DWORD -> "sptr"
; PropertyRegDataType : DWORD* optional, out -> "sptr"
; PropertyBuffer : BYTE* out -> "sptr"
; PropertyBufferSize : DWORD -> "sptr"
; RequiredSize : DWORD* optional, out -> "sptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。
出力引数:
#uselib "SETUPAPI.dll"
#cfunc global SetupDiGetCustomDevicePropertyA "SetupDiGetCustomDevicePropertyA" sptr, var, str, int, var, var, int, var
; res = SetupDiGetCustomDevicePropertyA(DeviceInfoSet, DeviceInfoData, CustomPropertyName, Flags, PropertyRegDataType, PropertyBuffer, PropertyBufferSize, RequiredSize)
; DeviceInfoSet : HDEVINFO -> "sptr"
; DeviceInfoData : SP_DEVINFO_DATA* -> "var"
; CustomPropertyName : LPCSTR -> "str"
; Flags : DWORD -> "int"
; PropertyRegDataType : DWORD* optional, out -> "var"
; PropertyBuffer : BYTE* out -> "var"
; PropertyBufferSize : DWORD -> "int"
; RequiredSize : DWORD* optional, out -> "var"
; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。
出力引数:
; BOOL SetupDiGetCustomDevicePropertyA(HDEVINFO DeviceInfoSet, SP_DEVINFO_DATA* DeviceInfoData, LPCSTR CustomPropertyName, DWORD Flags, DWORD* PropertyRegDataType, BYTE* PropertyBuffer, DWORD PropertyBufferSize, DWORD* RequiredSize)
#uselib "SETUPAPI.dll"
#cfunc global SetupDiGetCustomDevicePropertyA "SetupDiGetCustomDevicePropertyA" intptr, var, str, int, var, var, int, var
; res = SetupDiGetCustomDevicePropertyA(DeviceInfoSet, DeviceInfoData, CustomPropertyName, Flags, PropertyRegDataType, PropertyBuffer, PropertyBufferSize, RequiredSize)
; DeviceInfoSet : HDEVINFO -> "intptr"
; DeviceInfoData : SP_DEVINFO_DATA* -> "var"
; CustomPropertyName : LPCSTR -> "str"
; Flags : DWORD -> "int"
; PropertyRegDataType : DWORD* optional, out -> "var"
; PropertyBuffer : BYTE* out -> "var"
; PropertyBufferSize : DWORD -> "int"
; RequiredSize : DWORD* optional, out -> "var"
; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。
import (
	"golang.org/x/sys/windows"
	"unsafe"
)

var (
	setupapi = windows.NewLazySystemDLL("SETUPAPI.dll")
	procSetupDiGetCustomDevicePropertyA = setupapi.NewProc("SetupDiGetCustomDevicePropertyA")
)

// DeviceInfoSet (HDEVINFO), DeviceInfoData (SP_DEVINFO_DATA*), CustomPropertyName (LPCSTR), Flags (DWORD), PropertyRegDataType (DWORD* optional, out), PropertyBuffer (BYTE* out), PropertyBufferSize (DWORD), RequiredSize (DWORD* optional, out)
r1, _, err := procSetupDiGetCustomDevicePropertyA.Call(
	uintptr(DeviceInfoSet),
	uintptr(DeviceInfoData),
	uintptr(unsafe.Pointer(windows.BytePtrFromString(CustomPropertyName))),
	uintptr(Flags),
	uintptr(PropertyRegDataType),
	uintptr(PropertyBuffer),
	uintptr(PropertyBufferSize),
	uintptr(RequiredSize),
)
_ = err  // syscall.Errno (valid when the call sets last-error)
_ = r1   // BOOL
function SetupDiGetCustomDevicePropertyA(
  DeviceInfoSet: NativeInt;   // HDEVINFO
  DeviceInfoData: Pointer;   // SP_DEVINFO_DATA*
  CustomPropertyName: PAnsiChar;   // LPCSTR
  Flags: DWORD;   // DWORD
  PropertyRegDataType: Pointer;   // DWORD* optional, out
  PropertyBuffer: Pointer;   // BYTE* out
  PropertyBufferSize: DWORD;   // DWORD
  RequiredSize: Pointer   // DWORD* optional, out
): BOOL; stdcall;
  external 'SETUPAPI.dll' name 'SetupDiGetCustomDevicePropertyA';
result := DllCall("SETUPAPI\SetupDiGetCustomDevicePropertyA"
    , "Ptr", DeviceInfoSet   ; HDEVINFO
    , "Ptr", DeviceInfoData   ; SP_DEVINFO_DATA*
    , "AStr", CustomPropertyName   ; LPCSTR
    , "UInt", Flags   ; DWORD
    , "Ptr", PropertyRegDataType   ; DWORD* optional, out
    , "Ptr", PropertyBuffer   ; BYTE* out
    , "UInt", PropertyBufferSize   ; DWORD
    , "Ptr", RequiredSize   ; DWORD* optional, out
    , "Int")   ; return: BOOL
●SetupDiGetCustomDevicePropertyA(DeviceInfoSet, DeviceInfoData, CustomPropertyName, Flags, PropertyRegDataType, PropertyBuffer, PropertyBufferSize, RequiredSize) = DLL("SETUPAPI.dll", "bool SetupDiGetCustomDevicePropertyA(int, void*, char*, dword, void*, void*, dword, void*)")
# 呼び出し: SetupDiGetCustomDevicePropertyA(DeviceInfoSet, DeviceInfoData, CustomPropertyName, Flags, PropertyRegDataType, PropertyBuffer, PropertyBufferSize, RequiredSize)
# DeviceInfoSet : HDEVINFO -> "int"
# DeviceInfoData : SP_DEVINFO_DATA* -> "void*"
# CustomPropertyName : LPCSTR -> "char*"
# Flags : DWORD -> "dword"
# PropertyRegDataType : DWORD* optional, out -> "void*"
# PropertyBuffer : BYTE* out -> "void*"
# PropertyBufferSize : DWORD -> "dword"
# RequiredSize : DWORD* optional, out -> "void*"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。