RegNotifyChangeKeyValue method
Implementation
int RegNotifyChangeKeyValue(
ffi.Pointer<HKEY__> hKey,
int bWatchSubtree,
int dwNotifyFilter,
ffi.Pointer<ffi.Void> hEvent,
int fAsynchronous,
) {
return (_RegNotifyChangeKeyValue ??= _dylib.lookupFunction<
_c_RegNotifyChangeKeyValue,
_dart_RegNotifyChangeKeyValue>('RegNotifyChangeKeyValue'))(
hKey,
bWatchSubtree,
dwNotifyFilter,
hEvent,
fAsynchronous,
);
}