RegDeleteTreeW method

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

Implementation

int RegDeleteTreeW(
  ffi.Pointer<HKEY__> hKey,
  ffi.Pointer<ffi.Uint16> lpSubKey,
) {
  return (_RegDeleteTreeW ??=
      _dylib.lookupFunction<_c_RegDeleteTreeW, _dart_RegDeleteTreeW>(
          'RegDeleteTreeW'))(
    hKey,
    lpSubKey,
  );
}