RegDeleteKeyValue function advapi32

int RegDeleteKeyValue(
  1. int hKey,
  2. Pointer<Utf16> lpSubKey,
  3. Pointer<Utf16> lpValueName
)

Removes the specified value from the specified registry key and subkey.

LSTATUS RegDeleteKeyValueW(
  HKEY    hKey,
  LPCWSTR lpSubKey,
  LPCWSTR lpValueName);

Implementation

int RegDeleteKeyValue(
        int hKey, Pointer<Utf16> lpSubKey, Pointer<Utf16> lpValueName) =>
    _RegDeleteKeyValue(hKey, lpSubKey, lpValueName);