Scroll to navigation

RegSetValueW(3w) Wine API RegSetValueW(3w)

NAME

RegSetValueW (ADVAPI32.@)

SYNOPSIS

LSTATUS RegSetValueW
(
HKEY hkey,
LPCWSTR name,
DWORD type,
LPCWSTR data,
DWORD count
)
 

DESCRIPTION

Sets the data for the default or unnamed value of a reg key.
 

PARAMS

hKey [In] Handle to an open key.
lpSubKey [In] Name of a subkey of hKey.
dwType [In] Type of information to store.
lpData [In] String that contains the data to set for the default value.
cbData [In] Ignored.
 

RETURNS

Success: ERROR_SUCCESS
Failure: nonzero error code from Winerror.h
 

IMPLEMENTATION

Declared in "winreg.h".
Implemented in "dlls/advapi32/registry.c".
Debug channel "reg".
Oct 2012 Wine API