(Page 2 of 23 in this chapter) Version
cnfCloseConference
Description
- Closes a conference.
Prototype
- DWORD cnfCloseConference ( CNFRESOURCEHD cnfresourcehd,
DWORD confid)
- cnfresourcehd Handle returned by cnfOpenResource.
- confid Conference identifier returned by cnfCreateConference.
Return Values
Details
- This function closes and deletes the conference specified by confid. The conferencing resource being used by this conference is released and made available for creating a new conference or resizing an existing conference.
- Refer to Section 4.11 for more information on closing a conference.
See Also
- cnfCreateConference
Example
extern CNFRESOURCEHD cnfresourcehd;
DWORD myCloseConference( DWORD confid)
{
DWORD error;
error = cnfCloseConference (cnfresourcehd, confid);
if (error != SUCCESS)
{
printf("Error when closing conference : %d", error);
return(error);
}
return(SUCCESS);
}
(Page 2 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.