RegUnLoadKeyA method

int RegUnLoadKeyA(
  1. Pointer<HKEY__> hKey,
  2. Pointer<Int8> lpSubKey
)

Implementation

int RegUnLoadKeyA(
  ffi.Pointer<HKEY__> hKey,
  ffi.Pointer<ffi.Int8> lpSubKey,
) {
  return (_RegUnLoadKeyA ??=
      _dylib.lookupFunction<_c_RegUnLoadKeyA, _dart_RegUnLoadKeyA>(
          'RegUnLoadKeyA'))(
    hKey,
    lpSubKey,
  );
}