insertEntries method

int insertEntries(
  1. int before,
  2. Pointer<SAFEARRAY> factoryList
)

Implementation

int insertEntries(int before, Pointer<SAFEARRAY> factoryList) =>
    (ptr.ref.vtable + 7)
            .cast<
                Pointer<
                    NativeFunction<
                        Int32 Function(Pointer, Uint32 before,
                            Pointer<SAFEARRAY> factoryList)>>>()
            .value
            .asFunction<
                int Function(
                    Pointer, int before, Pointer<SAFEARRAY> factoryList)>()(
        ptr.ref.lpVtbl, before, factoryList);