RegDeleteKeyValue function advapi32
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);