NaturalConference Developer's Reference Manual (6749-13): Alphabetical Function Reference
(Page 21 of 23 in this chapter) Version
cnfSetMemberAttributeList
Description
- Sets the value of several member attributes using a single function invocation.
Prototype
- DWORD cnfSetMemberAttributeList (
CNFRESOURCEHD cnfresourcehd,
DWORD memberid,
DWORD *attributes,
INT32 *values,
unsigned count)
cnfresourcehd Handle returned by cnfOpenResource.
- memberid Member identifier returned by cnfJoinConference or cnfGetMemberList.
- attributes Pointer to the array of attributes to set.
- values Pointer to the values corresponding to the attributes.
- count Number of entries in attributes and values.
Return Values
Details
- Use this function to pass an array of attributes instead of calling cnfSetMemberAttribute several times to set each attribute value separately.
- See cnfSetMemberAttribute and Section 4.8 for further details about member attributes.
See Also
- cnfSetMemberAttribute
Example
DWORD attributeList[3] = {
MEMBER_ATTR_EC_ENABLE,
MEMBER_ATTR_EC_GAIN,
MEMBER_ATTR_EC_PREDELAY,
};
INT32 value[3] = { TRUE, 0, 5};
error = cnfSetMemberAttributeList( cnfresourcehd, memberid,
attributeList, values, 3);
(Page 21 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.