getChildren method

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

Implementation

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