RegGetValueA method
Implementation
int RegGetValueA(
ffi.Pointer<HKEY__> hkey,
ffi.Pointer<ffi.Int8> lpSubKey,
ffi.Pointer<ffi.Int8> lpValue,
int dwFlags,
ffi.Pointer<ffi.Uint64> pdwType,
ffi.Pointer<ffi.Void> pvData,
ffi.Pointer<ffi.Uint64> pcbData,
) {
return (_RegGetValueA ??= _dylib
.lookupFunction<_c_RegGetValueA, _dart_RegGetValueA>('RegGetValueA'))(
hkey,
lpSubKey,
lpValue,
dwFlags,
pdwType,
pvData,
pcbData,
);
}