ホーム › Devices.DeviceAndDriverInstallation › SetupDiDeleteDevRegKey
SetupDiDeleteDevRegKey
関数デバイス用のレジストリキーをスコープ指定で削除する。
シグネチャ
// SETUPAPI.dll
#include <windows.h>
BOOL SetupDiDeleteDevRegKey(
HDEVINFO DeviceInfoSet,
SP_DEVINFO_DATA* DeviceInfoData,
DWORD Scope,
DWORD HwProfile,
DWORD KeyType
);パラメーター
| 名前 | 型 | 方向 | 説明 |
|---|---|---|---|
| DeviceInfoSet | HDEVINFO | in | 対象のデバイス情報セットを指すハンドル。 |
| DeviceInfoData | SP_DEVINFO_DATA* | in | レジストリキーを削除する対象デバイスの構造体。 |
| Scope | DWORD | in | キーの適用範囲。DICS_FLAG_GLOBALかDICS_FLAG_CONFIGSPECIFICを指定する。 |
| HwProfile | DWORD | in | 対象ハードウェアプロファイル番号。0で現在のプロファイルを指す。 |
| KeyType | DWORD | in | 削除するキー種別。DIREG_DEV、DIREG_DRV、またはDIREG_BOTHを指定する。 |
戻り値の型: BOOL
各言語での呼び出し定義
// SETUPAPI.dll
#include <windows.h>
BOOL SetupDiDeleteDevRegKey(
HDEVINFO DeviceInfoSet,
SP_DEVINFO_DATA* DeviceInfoData,
DWORD Scope,
DWORD HwProfile,
DWORD KeyType
);[return: MarshalAs(UnmanagedType.Bool)]
[DllImport("SETUPAPI.dll", SetLastError = true, ExactSpelling = true)]
static extern bool SetupDiDeleteDevRegKey(
IntPtr DeviceInfoSet, // HDEVINFO
IntPtr DeviceInfoData, // SP_DEVINFO_DATA*
uint Scope, // DWORD
uint HwProfile, // DWORD
uint KeyType // DWORD
);<DllImport("SETUPAPI.dll", SetLastError:=True, ExactSpelling:=True)>
Public Shared Function SetupDiDeleteDevRegKey(
DeviceInfoSet As IntPtr, ' HDEVINFO
DeviceInfoData As IntPtr, ' SP_DEVINFO_DATA*
Scope As UInteger, ' DWORD
HwProfile As UInteger, ' DWORD
KeyType As UInteger ' DWORD
) As <MarshalAs(UnmanagedType.Bool)> Boolean
End Function' DeviceInfoSet : HDEVINFO
' DeviceInfoData : SP_DEVINFO_DATA*
' Scope : DWORD
' HwProfile : DWORD
' KeyType : DWORD
Declare PtrSafe Function SetupDiDeleteDevRegKey Lib "setupapi" ( _
ByVal DeviceInfoSet As LongPtr, _
ByVal DeviceInfoData As LongPtr, _
ByVal Scope As Long, _
ByVal HwProfile As Long, _
ByVal KeyType As Long) As Long
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。import ctypes
from ctypes import wintypes
SetupDiDeleteDevRegKey = ctypes.windll.setupapi.SetupDiDeleteDevRegKey
SetupDiDeleteDevRegKey.restype = wintypes.BOOL
SetupDiDeleteDevRegKey.argtypes = [
ctypes.c_ssize_t, # DeviceInfoSet : HDEVINFO
ctypes.c_void_p, # DeviceInfoData : SP_DEVINFO_DATA*
wintypes.DWORD, # Scope : DWORD
wintypes.DWORD, # HwProfile : DWORD
wintypes.DWORD, # KeyType : DWORD
]
# GetLastError: use ctypes.GetLastError() (or ctypes.WinDLL(use_last_error=True))require 'fiddle'
require 'fiddle/import'
lib = Fiddle.dlopen('SETUPAPI.dll')
SetupDiDeleteDevRegKey = Fiddle::Function.new(
lib['SetupDiDeleteDevRegKey'],
[
Fiddle::TYPE_INTPTR_T, # DeviceInfoSet : HDEVINFO
Fiddle::TYPE_VOIDP, # DeviceInfoData : SP_DEVINFO_DATA*
-Fiddle::TYPE_INT, # Scope : DWORD
-Fiddle::TYPE_INT, # HwProfile : DWORD
-Fiddle::TYPE_INT, # KeyType : DWORD
],
Fiddle::TYPE_INT)#[link(name = "setupapi")]
extern "system" {
fn SetupDiDeleteDevRegKey(
DeviceInfoSet: isize, // HDEVINFO
DeviceInfoData: *mut SP_DEVINFO_DATA, // SP_DEVINFO_DATA*
Scope: u32, // DWORD
HwProfile: u32, // DWORD
KeyType: u32 // DWORD
) -> i32;
}
// crates: windows-sys provides ready-made bindings for this API.$sig = @"
[return: MarshalAs(UnmanagedType.Bool)]
[DllImport("SETUPAPI.dll", SetLastError = true)]
public static extern bool SetupDiDeleteDevRegKey(IntPtr DeviceInfoSet, IntPtr DeviceInfoData, uint Scope, uint HwProfile, uint KeyType);
"@
$api = Add-Type -MemberDefinition $sig -Name 'SETUPAPI_SetupDiDeleteDevRegKey' -Namespace Win32 -PassThru
# $api::SetupDiDeleteDevRegKey(DeviceInfoSet, DeviceInfoData, Scope, HwProfile, KeyType)#uselib "SETUPAPI.dll"
#func global SetupDiDeleteDevRegKey "SetupDiDeleteDevRegKey" sptr, sptr, sptr, sptr, sptr
; SetupDiDeleteDevRegKey DeviceInfoSet, varptr(DeviceInfoData), Scope, HwProfile, KeyType ; 戻り値は stat
; DeviceInfoSet : HDEVINFO -> "sptr"
; DeviceInfoData : SP_DEVINFO_DATA* -> "sptr"
; Scope : DWORD -> "sptr"
; HwProfile : DWORD -> "sptr"
; KeyType : DWORD -> "sptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。出力引数:
#uselib "SETUPAPI.dll" #cfunc global SetupDiDeleteDevRegKey "SetupDiDeleteDevRegKey" sptr, var, int, int, int ; res = SetupDiDeleteDevRegKey(DeviceInfoSet, DeviceInfoData, Scope, HwProfile, KeyType) ; DeviceInfoSet : HDEVINFO -> "sptr" ; DeviceInfoData : SP_DEVINFO_DATA* -> "var" ; Scope : DWORD -> "int" ; HwProfile : DWORD -> "int" ; KeyType : DWORD -> "int" ; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。#uselib "SETUPAPI.dll" #cfunc global SetupDiDeleteDevRegKey "SetupDiDeleteDevRegKey" sptr, sptr, int, int, int ; res = SetupDiDeleteDevRegKey(DeviceInfoSet, varptr(DeviceInfoData), Scope, HwProfile, KeyType) ; DeviceInfoSet : HDEVINFO -> "sptr" ; DeviceInfoData : SP_DEVINFO_DATA* -> "sptr" ; Scope : DWORD -> "int" ; HwProfile : DWORD -> "int" ; KeyType : DWORD -> "int" ; ※出力/バッファ引数はポインタ方式(token=sptr / 呼び出しは varptr(変数))。
出力引数:
; BOOL SetupDiDeleteDevRegKey(HDEVINFO DeviceInfoSet, SP_DEVINFO_DATA* DeviceInfoData, DWORD Scope, DWORD HwProfile, DWORD KeyType) #uselib "SETUPAPI.dll" #cfunc global SetupDiDeleteDevRegKey "SetupDiDeleteDevRegKey" intptr, var, int, int, int ; res = SetupDiDeleteDevRegKey(DeviceInfoSet, DeviceInfoData, Scope, HwProfile, KeyType) ; DeviceInfoSet : HDEVINFO -> "intptr" ; DeviceInfoData : SP_DEVINFO_DATA* -> "var" ; Scope : DWORD -> "int" ; HwProfile : DWORD -> "int" ; KeyType : DWORD -> "int" ; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。; BOOL SetupDiDeleteDevRegKey(HDEVINFO DeviceInfoSet, SP_DEVINFO_DATA* DeviceInfoData, DWORD Scope, DWORD HwProfile, DWORD KeyType) #uselib "SETUPAPI.dll" #cfunc global SetupDiDeleteDevRegKey "SetupDiDeleteDevRegKey" intptr, intptr, int, int, int ; res = SetupDiDeleteDevRegKey(DeviceInfoSet, varptr(DeviceInfoData), Scope, HwProfile, KeyType) ; DeviceInfoSet : HDEVINFO -> "intptr" ; DeviceInfoData : SP_DEVINFO_DATA* -> "intptr" ; Scope : DWORD -> "int" ; HwProfile : DWORD -> "int" ; KeyType : DWORD -> "int" ; ※出力/バッファ引数はポインタ方式(token=intptr / 呼び出しは varptr(変数))。
import (
"golang.org/x/sys/windows"
"unsafe"
)
var (
setupapi = windows.NewLazySystemDLL("SETUPAPI.dll")
procSetupDiDeleteDevRegKey = setupapi.NewProc("SetupDiDeleteDevRegKey")
)
// DeviceInfoSet (HDEVINFO), DeviceInfoData (SP_DEVINFO_DATA*), Scope (DWORD), HwProfile (DWORD), KeyType (DWORD)
r1, _, err := procSetupDiDeleteDevRegKey.Call(
uintptr(DeviceInfoSet),
uintptr(DeviceInfoData),
uintptr(Scope),
uintptr(HwProfile),
uintptr(KeyType),
)
_ = err // syscall.Errno (valid when the call sets last-error)
_ = r1 // BOOLfunction SetupDiDeleteDevRegKey(
DeviceInfoSet: NativeInt; // HDEVINFO
DeviceInfoData: Pointer; // SP_DEVINFO_DATA*
Scope: DWORD; // DWORD
HwProfile: DWORD; // DWORD
KeyType: DWORD // DWORD
): BOOL; stdcall;
external 'SETUPAPI.dll' name 'SetupDiDeleteDevRegKey';result := DllCall("SETUPAPI\SetupDiDeleteDevRegKey"
, "Ptr", DeviceInfoSet ; HDEVINFO
, "Ptr", DeviceInfoData ; SP_DEVINFO_DATA*
, "UInt", Scope ; DWORD
, "UInt", HwProfile ; DWORD
, "UInt", KeyType ; DWORD
, "Int") ; return: BOOL●SetupDiDeleteDevRegKey(DeviceInfoSet, DeviceInfoData, Scope, HwProfile, KeyType) = DLL("SETUPAPI.dll", "bool SetupDiDeleteDevRegKey(int, void*, dword, dword, dword)")
# 呼び出し: SetupDiDeleteDevRegKey(DeviceInfoSet, DeviceInfoData, Scope, HwProfile, KeyType)
# DeviceInfoSet : HDEVINFO -> "int"
# DeviceInfoData : SP_DEVINFO_DATA* -> "void*"
# Scope : DWORD -> "dword"
# HwProfile : DWORD -> "dword"
# KeyType : DWORD -> "dword"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。const std = @import("std");
extern "setupapi" fn SetupDiDeleteDevRegKey(
DeviceInfoSet: isize, // HDEVINFO
DeviceInfoData: [*c]SP_DEVINFO_DATA, // SP_DEVINFO_DATA*
Scope: u32, // DWORD
HwProfile: u32, // DWORD
KeyType: u32 // DWORD
) callconv(std.os.windows.WINAPI) i32;proc SetupDiDeleteDevRegKey(
DeviceInfoSet: int, # HDEVINFO
DeviceInfoData: ptr SP_DEVINFO_DATA, # SP_DEVINFO_DATA*
Scope: uint32, # DWORD
HwProfile: uint32, # DWORD
KeyType: uint32 # DWORD
): int32 {.importc: "SetupDiDeleteDevRegKey", stdcall, dynlib: "SETUPAPI.dll".}pragma(lib, "setupapi");
extern(Windows)
int SetupDiDeleteDevRegKey(
ptrdiff_t DeviceInfoSet, // HDEVINFO
SP_DEVINFO_DATA* DeviceInfoData, // SP_DEVINFO_DATA*
uint Scope, // DWORD
uint HwProfile, // DWORD
uint KeyType // DWORD
);ccall((:SetupDiDeleteDevRegKey, "SETUPAPI.dll"), stdcall, Int32,
(Int, Ptr{SP_DEVINFO_DATA}, UInt32, UInt32, UInt32),
DeviceInfoSet, DeviceInfoData, Scope, HwProfile, KeyType)
# DeviceInfoSet : HDEVINFO -> Int
# DeviceInfoData : SP_DEVINFO_DATA* -> Ptr{SP_DEVINFO_DATA}
# Scope : DWORD -> UInt32
# HwProfile : DWORD -> UInt32
# KeyType : DWORD -> UInt32
# stdcall は 32bit のみ意味を持つ(x64 では無視)。local ffi = require("ffi")
ffi.cdef[[
int32_t SetupDiDeleteDevRegKey(
intptr_t DeviceInfoSet,
void* DeviceInfoData,
uint32_t Scope,
uint32_t HwProfile,
uint32_t KeyType);
]]
local setupapi = ffi.load("setupapi")
-- setupapi.SetupDiDeleteDevRegKey(DeviceInfoSet, DeviceInfoData, Scope, HwProfile, KeyType)
-- DeviceInfoSet : HDEVINFO
-- DeviceInfoData : SP_DEVINFO_DATA*
-- Scope : DWORD
-- HwProfile : DWORD
-- KeyType : DWORD
-- 構造体/GUIDへのポインタは cdef が通るよう void* で表記(実型は各引数コメント参照)。値渡し構造体・enum は対応する typedef を cdef に追加すること。const koffi = require('koffi');
const lib = koffi.load('SETUPAPI.dll');
const SetupDiDeleteDevRegKey = lib.func('__stdcall', 'SetupDiDeleteDevRegKey', 'int32_t', ['intptr_t', 'void *', 'uint32_t', 'uint32_t', 'uint32_t']);
// SetupDiDeleteDevRegKey(DeviceInfoSet, DeviceInfoData, Scope, HwProfile, KeyType)
// DeviceInfoSet : HDEVINFO -> 'intptr_t'
// DeviceInfoData : SP_DEVINFO_DATA* -> 'void *'
// Scope : DWORD -> 'uint32_t'
// HwProfile : DWORD -> 'uint32_t'
// KeyType : DWORD -> 'uint32_t'
// 出力ポインタは koffi.out(...) で包む。構造体は koffi.struct で定義。const lib = Deno.dlopen("SETUPAPI.dll", {
SetupDiDeleteDevRegKey: { parameters: ["isize", "pointer", "u32", "u32", "u32"], result: "i32" },
});
// lib.symbols.SetupDiDeleteDevRegKey(DeviceInfoSet, DeviceInfoData, Scope, HwProfile, KeyType)
// DeviceInfoSet : HDEVINFO -> "isize"
// DeviceInfoData : SP_DEVINFO_DATA* -> "pointer"
// Scope : DWORD -> "u32"
// HwProfile : DWORD -> "u32"
// KeyType : DWORD -> "u32"
// 文字列引数は "buffer"(NUL 終端のバイト列を Uint8Array で渡す)。
// 値渡し構造体は { struct: [ ...field types... ] } を使用。<?php
$ffi = FFI::cdef(<<<C
int32_t SetupDiDeleteDevRegKey(
intptr_t DeviceInfoSet,
void* DeviceInfoData,
uint32_t Scope,
uint32_t HwProfile,
uint32_t KeyType);
C, "SETUPAPI.dll");
// $ffi->SetupDiDeleteDevRegKey(DeviceInfoSet, DeviceInfoData, Scope, HwProfile, KeyType);
// DeviceInfoSet : HDEVINFO
// DeviceInfoData : SP_DEVINFO_DATA*
// Scope : DWORD
// HwProfile : DWORD
// KeyType : DWORD
// 構造体/GUIDへのポインタは cdef が通るよう void* で表記(実型は各引数コメント参照)。値渡し構造体・enum は対応する typedef を cdef に追加すること。
// WINAPI(stdcall): x64 では呼出規約が統一されるため問題なし。x86 では __stdcall 対応のラッパが必要な場合あり。import com.sun.jna.*;
import com.sun.jna.ptr.*;
import com.sun.jna.win32.StdCallLibrary;
import com.sun.jna.win32.W32APIOptions;
public interface Setupapi extends StdCallLibrary {
Setupapi INSTANCE = Native.load("setupapi", Setupapi.class);
boolean SetupDiDeleteDevRegKey(
long DeviceInfoSet, // HDEVINFO
Pointer DeviceInfoData, // SP_DEVINFO_DATA*
int Scope, // DWORD
int HwProfile, // DWORD
int KeyType // DWORD
);
}@[Link("setupapi")]
lib LibSETUPAPI
fun SetupDiDeleteDevRegKey = SetupDiDeleteDevRegKey(
DeviceInfoSet : LibC::SSizeT, # HDEVINFO
DeviceInfoData : SP_DEVINFO_DATA*, # SP_DEVINFO_DATA*
Scope : UInt32, # DWORD
HwProfile : UInt32, # DWORD
KeyType : UInt32 # DWORD
) : Int32
end
# 構造体/GUID/enum は lib 内に対応する型定義が必要。
# 呼出規約: x64 は規約統一のため OK。x86(32bit)は WINAPI=stdcall だが Crystal の fun に stdcall 付与構文がなく非対応。import 'dart:ffi';
import 'package:ffi/ffi.dart';
typedef SetupDiDeleteDevRegKeyNative = Int32 Function(IntPtr, Pointer<Void>, Uint32, Uint32, Uint32);
typedef SetupDiDeleteDevRegKeyDart = int Function(int, Pointer<Void>, int, int, int);
final SetupDiDeleteDevRegKey = DynamicLibrary.open('SETUPAPI.dll')
.lookupFunction<SetupDiDeleteDevRegKeyNative, SetupDiDeleteDevRegKeyDart>('SetupDiDeleteDevRegKey');
// DeviceInfoSet : HDEVINFO -> IntPtr
// DeviceInfoData : SP_DEVINFO_DATA* -> Pointer<Void>
// Scope : DWORD -> Uint32
// HwProfile : DWORD -> Uint32
// KeyType : DWORD -> Uint32
// 文字列は package:ffi の "...".toNativeUtf16()/toNativeUtf8() で変換。{$mode objfpc}{$H+}
function SetupDiDeleteDevRegKey(
DeviceInfoSet: NativeInt; // HDEVINFO
DeviceInfoData: Pointer; // SP_DEVINFO_DATA*
Scope: DWORD; // DWORD
HwProfile: DWORD; // DWORD
KeyType: DWORD // DWORD
): BOOL; stdcall;
external 'SETUPAPI.dll' name 'SetupDiDeleteDevRegKey';import Foreign
import Foreign.C.Types
import Foreign.C.String
foreign import stdcall safe "SetupDiDeleteDevRegKey"
c_SetupDiDeleteDevRegKey :: CIntPtr -> Ptr () -> Word32 -> Word32 -> Word32 -> IO CInt
-- DeviceInfoSet : HDEVINFO -> CIntPtr
-- DeviceInfoData : SP_DEVINFO_DATA* -> Ptr ()
-- Scope : DWORD -> Word32
-- HwProfile : DWORD -> Word32
-- KeyType : DWORD -> Word32
-- 要 GHC(Windows)。stdcall は x64 では ccall として扱われる。ブロックする API は safe 呼び出し推奨。open Ctypes
open Foreign
let setupdideletedevregkey =
foreign "SetupDiDeleteDevRegKey"
(intptr_t @-> (ptr void) @-> uint32_t @-> uint32_t @-> uint32_t @-> returning int32_t)
(* DeviceInfoSet : HDEVINFO -> intptr_t *)
(* DeviceInfoData : SP_DEVINFO_DATA* -> (ptr void) *)
(* Scope : DWORD -> uint32_t *)
(* HwProfile : DWORD -> uint32_t *)
(* KeyType : DWORD -> uint32_t *)
(* foreign は cdecl 前提。x64 Windows では WINAPI と一致。構造体は ctypes structure を定義のこと。 *)(cffi:define-foreign-library setupapi (t "SETUPAPI.dll"))
(cffi:use-foreign-library setupapi)
(cffi:defcfun ("SetupDiDeleteDevRegKey" setup-di-delete-dev-reg-key :convention :stdcall) :int32
(device-info-set :int64) ; HDEVINFO
(device-info-data :pointer) ; SP_DEVINFO_DATA*
(scope :uint32) ; DWORD
(hw-profile :uint32) ; DWORD
(key-type :uint32)) ; DWORD
; isize/usize(INT_PTR/SIZE_T)は x64 前提で :int64/:uint64。x86 では :int32/:uint32。use Win32::API;
my $SetupDiDeleteDevRegKey = Win32::API::More->new('SETUPAPI',
'BOOL SetupDiDeleteDevRegKey(LPARAM DeviceInfoSet, LPVOID DeviceInfoData, DWORD Scope, DWORD HwProfile, DWORD KeyType)');
# my $ret = $SetupDiDeleteDevRegKey->Call($DeviceInfoSet, $DeviceInfoData, $Scope, $HwProfile, $KeyType);
# DeviceInfoSet : HDEVINFO -> LPARAM
# DeviceInfoData : SP_DEVINFO_DATA* -> LPVOID
# Scope : DWORD -> DWORD
# HwProfile : DWORD -> DWORD
# KeyType : DWORD -> DWORD
# 値渡し構造体は pack() した文字列、または Win32::API::Struct を使用。関連項目
使用する型