RegUnLoadKeyW method

int RegUnLoadKeyW(
  1. Pointer<HKEY__> hKey,
  2. Pointer<Uint16> lpSubKey
)

Implementation

int RegUnLoadKeyW(
  ffi.Pointer<HKEY__> hKey,
  ffi.Pointer<ffi.Uint16> lpSubKey,
) {
  return (_RegUnLoadKeyW ??=
      _dylib.lookupFunction<_c_RegUnLoadKeyW, _dart_RegUnLoadKeyW>(
          'RegUnLoadKeyW'))(
    hKey,
    lpSubKey,
  );
}