Scroll to navigation

SHDeleteValueA(3w) Wine API SHDeleteValueA(3w)

NAME

SHDeleteValueA (SHLWAPI.@)

SYNOPSIS

DWORD SHDeleteValueA
(
HKEY hKey,
LPCSTR lpszSubKey,
LPCSTR lpszValue
)
 

DESCRIPTION

Delete a value from the registry.
 

PARAMS

hKey [In] Handle to registry key.
lpszSubKey [In] Name of sub key containing value to delete.
lpszValue [In] Name of value to delete.
 

RETURNS

Success: ERROR_SUCCESS. The value is deleted.
Failure: An error code from RegOpenKeyExA(3w) or RegDeleteValueA(3w).
 

IMPLEMENTATION

Declared in "shlwapi.h".
Implemented in "dlls/shlwapi/reg.c".
Debug channel "shell".
Oct 2012 Wine API