next method

int next(
  1. int celt,
  2. Pointer<Pointer<COMObject>> rgelt,
  3. Pointer<Uint32> pceltFetched
)

Implementation

int next(int celt, Pointer<Pointer<COMObject>> rgelt,
        Pointer<Uint32> pceltFetched) =>
    (ptr.ref.vtable + 8)
            .cast<
                Pointer<
                    NativeFunction<
                        Int32 Function(
                            Pointer,
                            Uint32 celt,
                            Pointer<Pointer<COMObject>> rgelt,
                            Pointer<Uint32> pceltFetched)>>>()
            .value
            .asFunction<
                int Function(
                    Pointer,
                    int celt,
                    Pointer<Pointer<COMObject>> rgelt,
                    Pointer<Uint32> pceltFetched)>()(
        ptr.ref.lpVtbl, celt, rgelt, pceltFetched);