next method
Gets the next specified number of elements in the enumeration sequence.
Throws a WindowsException on failure.
To learn more, see learn.microsoft.com/windows/win32/api/netlistmgr/nf-netlistmgr-ienumnetworks-next.
Implementation
@pragma('vm:prefer-inline')
void next(
int celt,
Pointer<VTablePointer> rgelt,
Pointer<Uint32>? pceltFetched,
) {
final hr$ = HRESULT(_NextFn(ptr, celt, rgelt, pceltFetched ?? nullptr));
if (hr$.isError) throw WindowsException(hr$);
}