insertEntry method

int insertEntry(
  1. int before,
  2. Pointer<COMObject> factory
)

Implementation

int insertEntry(int before, Pointer<COMObject> factory) => (ptr.ref.vtable +
        8)
    .cast<
        Pointer<
            NativeFunction<
                Int32 Function(
                    Pointer, Uint32 before, Pointer<COMObject> factory)>>>()
    .value
    .asFunction<
        int Function(Pointer, int before,
            Pointer<COMObject> factory)>()(ptr.ref.lpVtbl, before, factory);