getCachedChildren method

int getCachedChildren(
  1. Pointer<Pointer<COMObject>> children
)

Implementation

int getCachedChildren(Pointer<Pointer<COMObject>> children) =>
    (ptr.ref.vtable + 19)
        .cast<
          Pointer<
            NativeFunction<
              Int32 Function(Pointer, Pointer<Pointer<COMObject>> children)
            >
          >
        >()
        .value
        .asFunction<
          int Function(Pointer, Pointer<Pointer<COMObject>> children)
        >()(ptr.ref.lpVtbl, children);