composeWith method

int composeWith(
  1. Pointer<COMObject> pmkRight,
  2. int fOnlyIfNotGeneric,
  3. Pointer<Pointer<COMObject>> ppmkComposite
)

Implementation

int composeWith(Pointer<COMObject> pmkRight, int fOnlyIfNotGeneric,
        Pointer<Pointer<COMObject>> ppmkComposite) =>
    (ptr.ref.vtable + 11)
            .cast<
                Pointer<
                    NativeFunction<
                        Int32 Function(
                            Pointer,
                            Pointer<COMObject> pmkRight,
                            Int32 fOnlyIfNotGeneric,
                            Pointer<Pointer<COMObject>> ppmkComposite)>>>()
            .value
            .asFunction<
                int Function(
                    Pointer,
                    Pointer<COMObject> pmkRight,
                    int fOnlyIfNotGeneric,
                    Pointer<Pointer<COMObject>> ppmkComposite)>()(
        ptr.ref.lpVtbl, pmkRight, fOnlyIfNotGeneric, ppmkComposite);