next method

int next(
  1. int celt,
  2. Pointer<VARIANT> rgVar,
  3. Pointer<Uint32> pCeltFetched
)

Implementation

int next(int celt, Pointer<VARIANT> rgVar, Pointer<Uint32> pCeltFetched) =>
    (ptr.ref.vtable + 3)
            .cast<
                Pointer<
                    NativeFunction<
                        Int32 Function(
                            Pointer,
                            Uint32 celt,
                            Pointer<VARIANT> rgVar,
                            Pointer<Uint32> pCeltFetched)>>>()
            .value
            .asFunction<
                int Function(Pointer, int celt, Pointer<VARIANT> rgVar,
                    Pointer<Uint32> pCeltFetched)>()(
        ptr.ref.lpVtbl, celt, rgVar, pCeltFetched);