|
typedef const struct __CFDictionary * | CFDictionaryRef |
|
typedef void(* | CFDictionaryApplierFunction) (const void *key, const void *value, void *context) |
|
typedef CFStringRef(* | CFDictionaryCopyDescriptionCallBack) (const void *value) |
|
typedef Boolean(* | CFDictionaryEqualCallBack) (const void *value1, const void *value2) |
|
typedef CFHashCode(* | CFDictionaryHashCallBack) (const void *value) |
|
typedef void(* | CFDictionaryReleaseCallBack) (CFAllocatorRef allocator, const void *value) |
|
typedef const void *(* | CFDictionaryRetainCallBack) (CFAllocatorRef allocator, const void *value) |
|
|
Boolean | CFDictionaryContainsKey (CFDictionaryRef theDict, const void *key) |
|
Boolean | CFDictionaryContainsValue (CFDictionaryRef theDict, const void *value) |
|
CFIndex | CFDictionaryGetCount (CFDictionaryRef theDict) |
|
CFIndex | CFDictionaryGetCountOfKey (CFDictionaryRef theDict, const void *key) |
|
CFIndex | CFDictionaryGetCountOfValue (CFDictionaryRef theDict, const void *value) |
|
void | CFDictionaryGetKeysAndValues (CFDictionaryRef theDict, const void **keys, const void **values) |
|
const void * | CFDictionaryGetValue (CFDictionaryRef theDict, const void *key) |
|
Boolean | CFDictionaryGetValueIfPresent (CFDictionaryRef theDict, const void *key, const void **value) |
|