RegFlushKey method

int RegFlushKey(
  1. Pointer<HKEY__> hKey
)

Implementation

int RegFlushKey(
  ffi.Pointer<HKEY__> hKey,
) {
  return (_RegFlushKey ??= _dylib
      .lookupFunction<_c_RegFlushKey, _dart_RegFlushKey>('RegFlushKey'))(
    hKey,
  );
}