next method
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);