cachedLiveSetting property

int get cachedLiveSetting

Implementation

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

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

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

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