RegDeleteValue function advapi32
Removes a named value from the specified registry key. Note that value names are not case sensitive.
LSTATUS RegDeleteValueW(
HKEY hKey,
LPCWSTR lpValueName);
Implementation
int RegDeleteValue(int hKey, Pointer<Utf16> lpValueName) =>
_RegDeleteValue(hKey, lpValueName);