rate property

int rate

Implementation

int get rate {
  final retValuePtr = calloc<Int32>();

  try {
    final hr = (ptr.ref.vtable + 14)
            .cast<
                Pointer<
                    NativeFunction<
                        Int32 Function(Pointer, Pointer<Int32> Rate)>>>()
            .value
            .asFunction<int Function(Pointer, Pointer<Int32> Rate)>()(
        ptr.ref.lpVtbl, retValuePtr);

    if (FAILED(hr)) throw WindowsException(hr);

    final retValue = retValuePtr.value;
    return retValue;
  } finally {
    free(retValuePtr);
  }
}
void rate=(int value)

Implementation

set rate(int value) {
  final hr = (ptr.ref.vtable + 15)
      .cast<Pointer<NativeFunction<Int32 Function(Pointer, Int32 Rate)>>>()
      .value
      .asFunction<int Function(Pointer, int Rate)>()(ptr.ref.lpVtbl, value);

  if (FAILED(hr)) throw WindowsException(hr);
}