(Page 8 of 23 in this chapter) Version
cnfGetConferenceList
Description
- Returns the list of conferences running on a conferencing resource.
Prototype
- DWORD cnfGetConferenceList ( CNFRESOURCEHD cnfresourcehd,
unsigned maxconfids,
DWORD *confidlist,
unsigned *numconfids)
- cnfresourcehd Handle returned by cnfOpenResource.
- maxconfids Maximum number of entries in confidlist array.
- confidlist Pointer to an array of DWORD to receive the list of conference identifiers. If NULL, this function returns the number of conferences currently running in numconfid.
- numconfids Pointer to returned number of conference identifiers.
Return Values
Details
- This function returns the actual list of conference identifiers running on a given conferencing resource. To determine the number of conferences currently running, set maxconfids to 0 and confidlist to NULL.
- For more information, refer to Section 4.5, Creating Conferences.
See Also
- cnfCreateConference, cnfGetConferenceInfo, cnfGetResourceInfo
, cnfGetResourceList
Example
extern CNFRESOURCEHD cnfresourcehd;
unsigned getConferenceList(DWORD *confidlist, unsigned maxconfids)
{
DWORD error;
unsigned numconfids = 0;
error=cnfGetConferenceList(cnfresourcehd, maxconfids,
confidlist, &numconfids);
if (error != SUCCESS)
{
printf("Error when retrieving conference list :%d", error);
}
return (numconfids);
}
(Page 8 of 23 in this chapter) Version
Want to send us feedback on our documentation? Email: Tech_Pubs@nmss.com
Copyright © 2000, Natural MicroSystems, Inc. All rights
reserved.