regSetNone function
void
regSetNone(})
Sets a Windows registry valueName with a type REG_NONE.
No value is set.
A WindowsException is thrown the call falls.
@Throwing(WindowsException)
Implementation
void regSetNone(
HKEY hkey,
String subKey,
String valueName, {
REG_SAM_FLAGS accessRights = KEY_SET_VALUE,
}) {
_regSetValue(hkey, subKey, valueName, nullptr.cast(), 0, REG_NONE,
accessRights: accessRights);
}