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