RegGetValueW method

int RegGetValueW(
  1. Pointer<HKEY__> hkey,
  2. Pointer<Uint16> lpSubKey,
  3. Pointer<Uint16> lpValue,
  4. int dwFlags,
  5. Pointer<Uint64> pdwType,
  6. Pointer<Void> pvData,
  7. Pointer<Uint64> pcbData,
)

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(
    hkey,
    lpSubKey,
    lpValue,
    dwFlags,
    pdwType,
    pvData,
    pcbData,
  );
}