RegQueryMultipleValuesW method

int RegQueryMultipleValuesW(
  1. Pointer<HKEY__> hKey,
  2. Pointer<VALENTW> val_list,
  3. int num_vals,
  4. Pointer<Uint16> lpValueBuf,
  5. Pointer<Uint64> ldwTotsize,
)

Implementation

int RegQueryMultipleValuesW(
  ffi.Pointer<HKEY__> hKey,
  ffi.Pointer<VALENTW> val_list,
  int num_vals,
  ffi.Pointer<ffi.Uint16> lpValueBuf,
  ffi.Pointer<ffi.Uint64> ldwTotsize,
) {
  return _RegQueryMultipleValuesW(
    hKey,
    val_list,
    num_vals,
    lpValueBuf,
    ldwTotsize,
  );
}