CFSetGetValues |
||||
Header: | CFSet.h | Carbon status: | Supported | |
Obtains all values in a CFSet object.
void CFSetGetValues ( CFSetRef theSet, void **values );
Pass a reference to the CFSet object whose values you want to obtain.
Declare a C array of the appropriate type and size (that is, a size equal to the count of the CFSet object). Pass in a pointer to this array. Upon return, the C array contains all values in the CFSet object. The behavior is undefined if there are not enough allocated elements in the C array or if the type of the elements is not the type of the values held by the CFSet object.
Supported in Carbon. Available in Carbon 1.0.2 and later.
© 2000 Apple Computer, Inc. (Last Updated 6/30/2000)