Pictures property

int Pictures

Implementation

int get Pictures {
  final retValuePtr = calloc<IntPtr>();

  try {
    final hr = Pointer<NativeFunction<_get_Pictures_Native>>.fromAddress(
            ptr.ref.vtable.elementAt(17).value)
        .asFunction<_get_Pictures_Dart>()(ptr.ref.lpVtbl, retValuePtr);
    if (FAILED(hr)) throw WindowsException(hr);

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