Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
The Next method gets the next specified number of elements in the enumeration sequence.
Syntax
HRESULT Next(
[in] ULONG celt,
[out] ITACDGroup **ppElements,
[in, out] ULONG *pceltFetched
);
Parameters
[in] celt
Number of elements requested.
[out] ppElements
Pointer to ITACDGroup list of pointers returned.
[in, out] pceltFetched
Pointer to number of elements actually supplied. May be NULL if celt is one.
Return value
This method can return one of these values.
| Value | Meaning |
|---|---|
|
Method returned celt number of elements. |
|
Number of elements remaining was less than celt. |
|
Insufficient memory exists to perform the operation. |
|
The ppElements parameter is not a valid pointer. |
Remarks
TAPI calls the AddRef method on the ITACDGroup interface returned by IEnumACDGroup::Next. The application must call Release on the ITACDGroup interface to free resources associated with it.
Requirements
| Requirement | Value |
|---|---|
| Target Platform | Windows |
| Header | tapi3cc.h (include Tapi3.h) |
| Library | Uuid.lib |
| DLL | Tapi3.dll |