getBoundingRectangles method

int getBoundingRectangles(
  1. Pointer<Pointer<SAFEARRAY>> boundingRects
)

Implementation

int getBoundingRectangles(Pointer<Pointer<SAFEARRAY>> boundingRects) =>
    (ptr.ref.vtable + 10)
            .cast<
                Pointer<
                    NativeFunction<
                        Int32 Function(Pointer,
                            Pointer<Pointer<SAFEARRAY>> boundingRects)>>>()
            .value
            .asFunction<
                int Function(
                    Pointer, Pointer<Pointer<SAFEARRAY>> boundingRects)>()(
        ptr.ref.lpVtbl, boundingRects);