RegGetValueW method
Implementation
int RegGetValueW(
ffi.Pointer<HKEY__> hkey,
ffi.Pointer<ffi.Uint16> lpSubKey,
ffi.Pointer<ffi.Uint16> lpValue,
int dwFlags,
ffi.Pointer<ffi.Uint64> pdwType,
ffi.Pointer<ffi.Void> pvData,
ffi.Pointer<ffi.Uint64> pcbData,
) {
return (_RegGetValueW ??= _dylib
.lookupFunction<_c_RegGetValueW, _dart_RegGetValueW>('RegGetValueW'))(
hkey,
lpSubKey,
lpValue,
dwFlags,
pdwType,
pvData,
pcbData,
);
}