ホーム › System.Registry › RegSetValueW
RegSetValueW
関数指定キーの既定値を設定する旧式の関数。
シグネチャ
// ADVAPI32.dll (Unicode / -W)
#include <windows.h>
WIN32_ERROR RegSetValueW(
HKEY hKey,
LPCWSTR lpSubKey, // optional
REG_VALUE_TYPE dwType,
LPCWSTR lpData, // optional
DWORD cbData
);パラメーター
| 名前 | 型 | 方向 |
|---|---|---|
| hKey | HKEY | in |
| lpSubKey | LPCWSTR | inoptional |
| dwType | REG_VALUE_TYPE | in |
| lpData | LPCWSTR | inoptional |
| cbData | DWORD | in |
戻り値の型: WIN32_ERROR
各言語での呼び出し定義
// ADVAPI32.dll (Unicode / -W)
#include <windows.h>
WIN32_ERROR RegSetValueW(
HKEY hKey,
LPCWSTR lpSubKey, // optional
REG_VALUE_TYPE dwType,
LPCWSTR lpData, // optional
DWORD cbData
);[DllImport("ADVAPI32.dll", CharSet = CharSet.Unicode, ExactSpelling = true)]
static extern uint RegSetValueW(
IntPtr hKey, // HKEY
[MarshalAs(UnmanagedType.LPWStr)] string lpSubKey, // LPCWSTR optional
uint dwType, // REG_VALUE_TYPE
[MarshalAs(UnmanagedType.LPWStr)] string lpData, // LPCWSTR optional
uint cbData // DWORD
);<DllImport("ADVAPI32.dll", CharSet:=CharSet.Unicode, ExactSpelling:=True)>
Public Shared Function RegSetValueW(
hKey As IntPtr, ' HKEY
<MarshalAs(UnmanagedType.LPWStr)> lpSubKey As String, ' LPCWSTR optional
dwType As UInteger, ' REG_VALUE_TYPE
<MarshalAs(UnmanagedType.LPWStr)> lpData As String, ' LPCWSTR optional
cbData As UInteger ' DWORD
) As UInteger
End Function' hKey : HKEY
' lpSubKey : LPCWSTR optional
' dwType : REG_VALUE_TYPE
' lpData : LPCWSTR optional
' cbData : DWORD
Declare PtrSafe Function RegSetValueW Lib "advapi32" ( _
ByVal hKey As LongPtr, _
ByVal lpSubKey As LongPtr, _
ByVal dwType As Long, _
ByVal lpData As LongPtr, _
ByVal cbData As Long) As Long
' Unicode(W): 文字列は ByVal As LongPtr とし StrPtr(unicodeStr) を渡す
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。import ctypes
from ctypes import wintypes
RegSetValueW = ctypes.windll.advapi32.RegSetValueW
RegSetValueW.restype = wintypes.DWORD
RegSetValueW.argtypes = [
wintypes.HANDLE, # hKey : HKEY
wintypes.LPCWSTR, # lpSubKey : LPCWSTR optional
wintypes.DWORD, # dwType : REG_VALUE_TYPE
wintypes.LPCWSTR, # lpData : LPCWSTR optional
wintypes.DWORD, # cbData : DWORD
]require 'fiddle'
require 'fiddle/import'
lib = Fiddle.dlopen('ADVAPI32.dll')
RegSetValueW = Fiddle::Function.new(
lib['RegSetValueW'],
[
Fiddle::TYPE_VOIDP, # hKey : HKEY
Fiddle::TYPE_VOIDP, # lpSubKey : LPCWSTR optional
-Fiddle::TYPE_INT, # dwType : REG_VALUE_TYPE
Fiddle::TYPE_VOIDP, # lpData : LPCWSTR optional
-Fiddle::TYPE_INT, # cbData : DWORD
],
-Fiddle::TYPE_INT)
# Wide strings: pass str.encode("UTF-16LE") + "\x00\x00"#[link(name = "advapi32")]
extern "system" {
fn RegSetValueW(
hKey: *mut core::ffi::c_void, // HKEY
lpSubKey: *const u16, // LPCWSTR optional
dwType: u32, // REG_VALUE_TYPE
lpData: *const u16, // LPCWSTR optional
cbData: u32 // DWORD
) -> u32;
}
// crates: windows-sys provides ready-made bindings for this API.$sig = @"
[DllImport("ADVAPI32.dll", CharSet = CharSet.Unicode)]
public static extern uint RegSetValueW(IntPtr hKey, [MarshalAs(UnmanagedType.LPWStr)] string lpSubKey, uint dwType, [MarshalAs(UnmanagedType.LPWStr)] string lpData, uint cbData);
"@
$api = Add-Type -MemberDefinition $sig -Name 'ADVAPI32_RegSetValueW' -Namespace Win32 -PassThru
# $api::RegSetValueW(hKey, lpSubKey, dwType, lpData, cbData)#uselib "ADVAPI32.dll"
#func global RegSetValueW "RegSetValueW" wptr, wptr, wptr, wptr, wptr
; RegSetValueW hKey, lpSubKey, dwType, lpData, cbData ; 戻り値は stat
; hKey : HKEY -> "wptr"
; lpSubKey : LPCWSTR optional -> "wptr"
; dwType : REG_VALUE_TYPE -> "wptr"
; lpData : LPCWSTR optional -> "wptr"
; cbData : DWORD -> "wptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。#uselib "ADVAPI32.dll"
#cfunc global RegSetValueW "RegSetValueW" sptr, wstr, int, wstr, int
; res = RegSetValueW(hKey, lpSubKey, dwType, lpData, cbData)
; hKey : HKEY -> "sptr"
; lpSubKey : LPCWSTR optional -> "wstr"
; dwType : REG_VALUE_TYPE -> "int"
; lpData : LPCWSTR optional -> "wstr"
; cbData : DWORD -> "int"; WIN32_ERROR RegSetValueW(HKEY hKey, LPCWSTR lpSubKey, REG_VALUE_TYPE dwType, LPCWSTR lpData, DWORD cbData)
#uselib "ADVAPI32.dll"
#cfunc global RegSetValueW "RegSetValueW" intptr, wstr, int, wstr, int
; res = RegSetValueW(hKey, lpSubKey, dwType, lpData, cbData)
; hKey : HKEY -> "intptr"
; lpSubKey : LPCWSTR optional -> "wstr"
; dwType : REG_VALUE_TYPE -> "int"
; lpData : LPCWSTR optional -> "wstr"
; cbData : DWORD -> "int"import (
"golang.org/x/sys/windows"
"unsafe"
)
var (
advapi32 = windows.NewLazySystemDLL("ADVAPI32.dll")
procRegSetValueW = advapi32.NewProc("RegSetValueW")
)
// hKey (HKEY), lpSubKey (LPCWSTR optional), dwType (REG_VALUE_TYPE), lpData (LPCWSTR optional), cbData (DWORD)
r1, _, err := procRegSetValueW.Call(
uintptr(hKey),
uintptr(unsafe.Pointer(windows.StringToUTF16Ptr(lpSubKey))),
uintptr(dwType),
uintptr(unsafe.Pointer(windows.StringToUTF16Ptr(lpData))),
uintptr(cbData),
)
_ = err // syscall.Errno (valid when the call sets last-error)
_ = r1 // WIN32_ERRORfunction RegSetValueW(
hKey: THandle; // HKEY
lpSubKey: PWideChar; // LPCWSTR optional
dwType: DWORD; // REG_VALUE_TYPE
lpData: PWideChar; // LPCWSTR optional
cbData: DWORD // DWORD
): DWORD; stdcall;
external 'ADVAPI32.dll' name 'RegSetValueW';result := DllCall("ADVAPI32\RegSetValueW"
, "Ptr", hKey ; HKEY
, "WStr", lpSubKey ; LPCWSTR optional
, "UInt", dwType ; REG_VALUE_TYPE
, "WStr", lpData ; LPCWSTR optional
, "UInt", cbData ; DWORD
, "UInt") ; return: WIN32_ERROR●RegSetValueW(hKey, lpSubKey, dwType, lpData, cbData) = DLL("ADVAPI32.dll", "dword RegSetValueW(void*, char*, dword, char*, dword)")
# 呼び出し: RegSetValueW(hKey, lpSubKey, dwType, lpData, cbData)
# hKey : HKEY -> "void*"
# lpSubKey : LPCWSTR optional -> "char*"
# dwType : REG_VALUE_TYPE -> "dword"
# lpData : LPCWSTR optional -> "char*"
# cbData : DWORD -> "dword"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。
# ※-W(Unicode)関数。なでしこ1はANSIのため -A 版の利用を推奨。