next method

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

Retrieves the specified number of items in the enumeration sequence.

To learn more, see learn.microsoft.com/windows/win32/api/objidlbase/nf-objidlbase-ienumstring-next.

Implementation

@pragma('vm:prefer-inline')
HRESULT next(
  int celt,
  Pointer<Pointer<Utf16>> rgelt,
  Pointer<Uint32>? pceltFetched,
) => HRESULT(_NextFn(ptr, celt, rgelt, pceltFetched ?? nullptr));