queryObjectSink method

int queryObjectSink(
  1. int lFlags,
  2. Pointer<Pointer<COMObject>> ppResponseHandler
)

Implementation

int
    queryObjectSink(
            int lFlags, Pointer<Pointer<COMObject>> ppResponseHandler) =>
        (ptr.ref.vtable + 5)
                .cast<
                    Pointer<
                        NativeFunction<
                            Int32 Function(
                                Pointer,
                                Int32 lFlags,
                                Pointer<Pointer<COMObject>>
                                    ppResponseHandler)>>>()
                .value
                .asFunction<
                    int Function(Pointer, int lFlags,
                        Pointer<Pointer<COMObject>> ppResponseHandler)>()(
            ptr.ref.lpVtbl, lFlags, ppResponseHandler);