]>
Commit | Line | Data |
---|---|---|
9ce05555 | 1 | /* |
e29e285d | 2 | * Copyright (c) 2015 Apple Inc. All rights reserved. |
9ce05555 A |
3 | * |
4 | * @APPLE_LICENSE_HEADER_START@ | |
d7384798 | 5 | * |
9ce05555 A |
6 | * This file contains Original Code and/or Modifications of Original Code |
7 | * as defined in and that are subject to the Apple Public Source License | |
8 | * Version 2.0 (the 'License'). You may not use this file except in | |
9 | * compliance with the License. Please obtain a copy of the License at | |
10 | * http://www.opensource.apple.com/apsl/ and read it before using this | |
11 | * file. | |
d7384798 | 12 | * |
9ce05555 A |
13 | * The Original Code and all software distributed under the License are |
14 | * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER | |
15 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, | |
16 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
17 | * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. | |
18 | * Please see the License for the specific language governing rights and | |
19 | * limitations under the License. | |
d7384798 | 20 | * |
9ce05555 A |
21 | * @APPLE_LICENSE_HEADER_END@ |
22 | */ | |
f64f9b69 | 23 | |
9ce05555 | 24 | /* CFBag.h |
d7384798 | 25 | Copyright (c) 1998-2014, Apple Inc. All rights reserved. |
9ce05555 A |
26 | */ |
27 | ||
28 | #if !defined(__COREFOUNDATION_CFBAG__) | |
29 | #define __COREFOUNDATION_CFBAG__ 1 | |
30 | ||
31 | #include <CoreFoundation/CFBase.h> | |
32 | ||
856091c5 | 33 | CF_IMPLICIT_BRIDGING_ENABLED |
bd5b749c | 34 | CF_EXTERN_C_BEGIN |
9ce05555 A |
35 | |
36 | typedef const void * (*CFBagRetainCallBack)(CFAllocatorRef allocator, const void *value); | |
37 | typedef void (*CFBagReleaseCallBack)(CFAllocatorRef allocator, const void *value); | |
38 | typedef CFStringRef (*CFBagCopyDescriptionCallBack)(const void *value); | |
39 | typedef Boolean (*CFBagEqualCallBack)(const void *value1, const void *value2); | |
40 | typedef CFHashCode (*CFBagHashCallBack)(const void *value); | |
41 | typedef struct { | |
42 | CFIndex version; | |
43 | CFBagRetainCallBack retain; | |
44 | CFBagReleaseCallBack release; | |
45 | CFBagCopyDescriptionCallBack copyDescription; | |
46 | CFBagEqualCallBack equal; | |
47 | CFBagHashCallBack hash; | |
48 | } CFBagCallBacks; | |
49 | ||
50 | CF_EXPORT | |
51 | const CFBagCallBacks kCFTypeBagCallBacks; | |
52 | CF_EXPORT | |
53 | const CFBagCallBacks kCFCopyStringBagCallBacks; | |
54 | ||
55 | typedef void (*CFBagApplierFunction)(const void *value, void *context); | |
56 | ||
57 | typedef const struct __CFBag * CFBagRef; | |
58 | typedef struct __CFBag * CFMutableBagRef; | |
59 | ||
60 | CF_EXPORT | |
61 | CFTypeID CFBagGetTypeID(void); | |
62 | ||
63 | CF_EXPORT | |
64 | CFBagRef CFBagCreate(CFAllocatorRef allocator, const void **values, CFIndex numValues, const CFBagCallBacks *callBacks); | |
65 | ||
66 | CF_EXPORT | |
67 | CFBagRef CFBagCreateCopy(CFAllocatorRef allocator, CFBagRef theBag); | |
68 | ||
69 | CF_EXPORT | |
70 | CFMutableBagRef CFBagCreateMutable(CFAllocatorRef allocator, CFIndex capacity, const CFBagCallBacks *callBacks); | |
71 | ||
72 | CF_EXPORT | |
73 | CFMutableBagRef CFBagCreateMutableCopy(CFAllocatorRef allocator, CFIndex capacity, CFBagRef theBag); | |
74 | ||
75 | CF_EXPORT | |
76 | CFIndex CFBagGetCount(CFBagRef theBag); | |
77 | ||
78 | CF_EXPORT | |
79 | CFIndex CFBagGetCountOfValue(CFBagRef theBag, const void *value); | |
80 | ||
81 | CF_EXPORT | |
82 | Boolean CFBagContainsValue(CFBagRef theBag, const void *value); | |
83 | ||
84 | CF_EXPORT | |
85 | const void *CFBagGetValue(CFBagRef theBag, const void *value); | |
86 | ||
87 | CF_EXPORT | |
88 | Boolean CFBagGetValueIfPresent(CFBagRef theBag, const void *candidate, const void **value); | |
89 | ||
90 | CF_EXPORT | |
91 | void CFBagGetValues(CFBagRef theBag, const void **values); | |
92 | ||
93 | CF_EXPORT | |
94 | void CFBagApplyFunction(CFBagRef theBag, CFBagApplierFunction applier, void *context); | |
95 | ||
96 | CF_EXPORT | |
97 | void CFBagAddValue(CFMutableBagRef theBag, const void *value); | |
98 | ||
99 | CF_EXPORT | |
100 | void CFBagReplaceValue(CFMutableBagRef theBag, const void *value); | |
101 | ||
102 | CF_EXPORT | |
103 | void CFBagSetValue(CFMutableBagRef theBag, const void *value); | |
104 | ||
105 | CF_EXPORT | |
106 | void CFBagRemoveValue(CFMutableBagRef theBag, const void *value); | |
107 | ||
108 | CF_EXPORT | |
109 | void CFBagRemoveAllValues(CFMutableBagRef theBag); | |
110 | ||
bd5b749c | 111 | CF_EXTERN_C_END |
856091c5 | 112 | CF_IMPLICIT_BRIDGING_DISABLED |
9ce05555 A |
113 | |
114 | #endif /* ! __COREFOUNDATION_CFBAG__ */ | |
115 |