RegDisablePredefinedCache function Null safety advapi32
Disables handle caching of the predefined registry handle for HKEY_CURRENT_USER for the current process. This function does not work on a remote computer.
LSTATUS RegDisablePredefinedCache();
Implementation
int RegDisablePredefinedCache() {
final _RegDisablePredefinedCache =
_advapi32.lookupFunction<Int32 Function(), int Function()>(
'RegDisablePredefinedCache');
return _RegDisablePredefinedCache();
}