getFirstChildElementBuildCache method

int getFirstChildElementBuildCache(
  1. Pointer<COMObject> element,
  2. Pointer<COMObject> cacheRequest,
  3. Pointer<Pointer<COMObject>> first
)

Implementation

int getFirstChildElementBuildCache(Pointer<COMObject> element,
        Pointer<COMObject> cacheRequest, Pointer<Pointer<COMObject>> first) =>
    (ptr.ref.vtable + 10)
            .cast<
                Pointer<
                    NativeFunction<
                        Int32 Function(
                            Pointer,
                            Pointer<COMObject> element,
                            Pointer<COMObject> cacheRequest,
                            Pointer<Pointer<COMObject>> first)>>>()
            .value
            .asFunction<
                int Function(
                    Pointer,
                    Pointer<COMObject> element,
                    Pointer<COMObject> cacheRequest,
                    Pointer<Pointer<COMObject>> first)>()(
        ptr.ref.lpVtbl, element, cacheRequest, first);