createProxyFactoryEntry method

int createProxyFactoryEntry(
  1. Pointer<COMObject> factory,
  2. Pointer<Pointer<COMObject>> factoryEntry
)

Implementation

int createProxyFactoryEntry(Pointer<COMObject> factory,
        Pointer<Pointer<COMObject>> factoryEntry) =>
    (ptr.ref.vtable + 47)
            .cast<
                Pointer<
                    NativeFunction<
                        Int32 Function(Pointer, Pointer<COMObject> factory,
                            Pointer<Pointer<COMObject>> factoryEntry)>>>()
            .value
            .asFunction<
                int Function(Pointer, Pointer<COMObject> factory,
                    Pointer<Pointer<COMObject>> factoryEntry)>()(
        ptr.ref.lpVtbl, factory, factoryEntry);