putInstanceAsync method

int putInstanceAsync(
  1. Pointer<COMObject> pInst,
  2. int lFlags,
  3. Pointer<COMObject> pCtx,
  4. Pointer<COMObject> pResponseHandler,
)

Implementation

int putInstanceAsync(Pointer<COMObject> pInst, int lFlags,
        Pointer<COMObject> pCtx, Pointer<COMObject> pResponseHandler) =>
    ptr.ref.vtable
            .elementAt(15)
            .cast<
                Pointer<
                    NativeFunction<
                        Int32 Function(
                            Pointer,
                            Pointer<COMObject> pInst,
                            Int32 lFlags,
                            Pointer<COMObject> pCtx,
                            Pointer<COMObject> pResponseHandler)>>>()
            .value
            .asFunction<
                int Function(
                    Pointer,
                    Pointer<COMObject> pInst,
                    int lFlags,
                    Pointer<COMObject> pCtx,
                    Pointer<COMObject> pResponseHandler)>()(
        ptr.ref.lpVtbl, pInst, lFlags, pCtx, pResponseHandler);