IEnumNmConference::Next
Use the Next method to retrieve the specified number of INmConference interfaces in the enumeration sequence.
HRESULT Next(
ULONG cConference,INmConference **rgpConference,ULONG *pcFetched);
Parameters
- cConference
[in] Number of INmConference interface pointers to retrieve. - rgpConference
[out] Pointer to the location of an array for retrieved INmConference interface pointers. - pcFetched
[out] Pointer to the actual number of INmConference interface pointers placed in the array specified by rgpConference. This may be set to NULL, in which case cConference must be 1.
Return Values
NetMeeting client applications can use the SUCCEEDED and FAILED macros in winerror.h to check return values.
Return values can include remote procedure call (RPC) layer errors or any of the following values.
- S_OK
Retrieved the indicated number of interface pointers successfully. - S_FALSE
There are no more INmConference interfaces to retrieve. - E_INVALIDARG
pcFetched is NULL but cConference is not 1.
Remarks
The INmConference interfaces returned by this method have had their reference count incremented. The application should call the Release method on the interfaces to decrement the reference count when it has finished using the interfaces.
Requirements
** Windows NT/2000:** Requires Windows NT 4.0 SP3 or later.
** Windows 95/98:** Requires Windows 95 or later. Available as a redistributable for Windows 95.
** Header:** Imsconf2.idl.
See Also
INmManager:EnumConference, INmConference, Conference Object, Conference Object Details