xref: /xnu-8020.140.41/EXTERNAL_HEADERS/Availability.h (revision 27b03b360a988dfd3dfdf34262bb0042026747cc)
1*27b03b36SApple OSS Distributions /*
2*27b03b36SApple OSS Distributions  * Copyright (c) 2007-2016 by Apple Inc.. All rights reserved.
3*27b03b36SApple OSS Distributions  *
4*27b03b36SApple OSS Distributions  * @APPLE_LICENSE_HEADER_START@
5*27b03b36SApple OSS Distributions  *
6*27b03b36SApple OSS Distributions  * This file contains Original Code and/or Modifications of Original Code
7*27b03b36SApple OSS Distributions  * as defined in and that are subject to the Apple Public Source License
8*27b03b36SApple OSS Distributions  * Version 2.0 (the 'License'). You may not use this file except in
9*27b03b36SApple OSS Distributions  * compliance with the License. Please obtain a copy of the License at
10*27b03b36SApple OSS Distributions  * http://www.opensource.apple.com/apsl/ and read it before using this
11*27b03b36SApple OSS Distributions  * file.
12*27b03b36SApple OSS Distributions  *
13*27b03b36SApple OSS Distributions  * The Original Code and all software distributed under the License are
14*27b03b36SApple OSS Distributions  * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15*27b03b36SApple OSS Distributions  * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16*27b03b36SApple OSS Distributions  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17*27b03b36SApple OSS Distributions  * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18*27b03b36SApple OSS Distributions  * Please see the License for the specific language governing rights and
19*27b03b36SApple OSS Distributions  * limitations under the License.
20*27b03b36SApple OSS Distributions  *
21*27b03b36SApple OSS Distributions  * @APPLE_LICENSE_HEADER_END@
22*27b03b36SApple OSS Distributions  */
23*27b03b36SApple OSS Distributions 
24*27b03b36SApple OSS Distributions #ifndef __AVAILABILITY__
25*27b03b36SApple OSS Distributions #define __AVAILABILITY__
26*27b03b36SApple OSS Distributions  /*
27*27b03b36SApple OSS Distributions     These macros are for use in OS header files. They enable function prototypes
28*27b03b36SApple OSS Distributions     and Objective-C methods to be tagged with the OS version in which they
29*27b03b36SApple OSS Distributions     were first available; and, if applicable, the OS version in which they
30*27b03b36SApple OSS Distributions     became deprecated.
31*27b03b36SApple OSS Distributions 
32*27b03b36SApple OSS Distributions     The desktop Mac OS X and iOS each have different version numbers.
33*27b03b36SApple OSS Distributions     The __OSX_AVAILABLE_STARTING() macro allows you to specify both the desktop
34*27b03b36SApple OSS Distributions     and iOS version numbers.  For instance:
35*27b03b36SApple OSS Distributions         __OSX_AVAILABLE_STARTING(__MAC_10_2,__IPHONE_2_0)
36*27b03b36SApple OSS Distributions     means the function/method was first available on Mac OS X 10.2 on the desktop
37*27b03b36SApple OSS Distributions     and first available in iOS 2.0 on the iPhone.
38*27b03b36SApple OSS Distributions 
39*27b03b36SApple OSS Distributions     If a function is available on one platform, but not the other a _NA (not
40*27b03b36SApple OSS Distributions     applicable) parameter is used.  For instance:
41*27b03b36SApple OSS Distributions             __OSX_AVAILABLE_STARTING(__MAC_10_3,__IPHONE_NA)
42*27b03b36SApple OSS Distributions     means that the function/method was first available on Mac OS X 10.3, and it
43*27b03b36SApple OSS Distributions     currently not implemented on the iPhone.
44*27b03b36SApple OSS Distributions 
45*27b03b36SApple OSS Distributions     At some point, a function/method may be deprecated.  That means Apple
46*27b03b36SApple OSS Distributions     recommends applications stop using the function, either because there is a
47*27b03b36SApple OSS Distributions     better replacement or the functionality is being phased out.  Deprecated
48*27b03b36SApple OSS Distributions     functions/methods can be tagged with a __OSX_AVAILABLE_BUT_DEPRECATED()
49*27b03b36SApple OSS Distributions     macro which specifies the OS version where the function became available
50*27b03b36SApple OSS Distributions     as well as the OS version in which it became deprecated.  For instance:
51*27b03b36SApple OSS Distributions         __OSX_AVAILABLE_BUT_DEPRECATED(__MAC_10_0,__MAC_10_5,__IPHONE_NA,__IPHONE_NA)
52*27b03b36SApple OSS Distributions     means that the function/method was introduced in Mac OS X 10.0, then
53*27b03b36SApple OSS Distributions     became deprecated beginning in Mac OS X 10.5.  On iOS the function
54*27b03b36SApple OSS Distributions     has never been available.
55*27b03b36SApple OSS Distributions 
56*27b03b36SApple OSS Distributions     For these macros to function properly, a program must specify the OS version range
57*27b03b36SApple OSS Distributions     it is targeting.  The min OS version is specified as an option to the compiler:
58*27b03b36SApple OSS Distributions     -mmacosx-version-min=10.x when building for Mac OS X, and -miphoneos-version-min=y.z
59*27b03b36SApple OSS Distributions     when building for the iPhone.  The upper bound for the OS version is rarely needed,
60*27b03b36SApple OSS Distributions     but it can be set on the command line via: -D__MAC_OS_X_VERSION_MAX_ALLOWED=10x0 for
61*27b03b36SApple OSS Distributions     Mac OS X and __IPHONE_OS_VERSION_MAX_ALLOWED = y0z00 for iOS.
62*27b03b36SApple OSS Distributions 
63*27b03b36SApple OSS Distributions     Examples:
64*27b03b36SApple OSS Distributions 
65*27b03b36SApple OSS Distributions         A function available in Mac OS X 10.5 and later, but not on the phone:
66*27b03b36SApple OSS Distributions 
67*27b03b36SApple OSS Distributions             extern void mymacfunc() __OSX_AVAILABLE_STARTING(__MAC_10_5,__IPHONE_NA);
68*27b03b36SApple OSS Distributions 
69*27b03b36SApple OSS Distributions 
70*27b03b36SApple OSS Distributions         An Objective-C method in Mac OS X 10.5 and later, but not on the phone:
71*27b03b36SApple OSS Distributions 
72*27b03b36SApple OSS Distributions             @interface MyClass : NSObject
73*27b03b36SApple OSS Distributions             -(void) mymacmethod __OSX_AVAILABLE_STARTING(__MAC_10_5,__IPHONE_NA);
74*27b03b36SApple OSS Distributions             @end
75*27b03b36SApple OSS Distributions 
76*27b03b36SApple OSS Distributions 
77*27b03b36SApple OSS Distributions         An enum available on the phone, but not available on Mac OS X:
78*27b03b36SApple OSS Distributions 
79*27b03b36SApple OSS Distributions             #if __IPHONE_OS_VERSION_MIN_REQUIRED
80*27b03b36SApple OSS Distributions                 enum { myEnum = 1 };
81*27b03b36SApple OSS Distributions             #endif
82*27b03b36SApple OSS Distributions            Note: this works when targeting the Mac OS X platform because
83*27b03b36SApple OSS Distributions            __IPHONE_OS_VERSION_MIN_REQUIRED is undefined which evaluates to zero.
84*27b03b36SApple OSS Distributions 
85*27b03b36SApple OSS Distributions 
86*27b03b36SApple OSS Distributions         An enum with values added in different iPhoneOS versions:
87*27b03b36SApple OSS Distributions 
88*27b03b36SApple OSS Distributions 			enum {
89*27b03b36SApple OSS Distributions 			    myX  = 1,	// Usable on iPhoneOS 2.1 and later
90*27b03b36SApple OSS Distributions 			    myY  = 2,	// Usable on iPhoneOS 3.0 and later
91*27b03b36SApple OSS Distributions 			    myZ  = 3,	// Usable on iPhoneOS 3.0 and later
92*27b03b36SApple OSS Distributions 				...
93*27b03b36SApple OSS Distributions 		      Note: you do not want to use #if with enumeration values
94*27b03b36SApple OSS Distributions 			  when a client needs to see all values at compile time
95*27b03b36SApple OSS Distributions 			  and use runtime logic to only use the viable values.
96*27b03b36SApple OSS Distributions 
97*27b03b36SApple OSS Distributions 
98*27b03b36SApple OSS Distributions     It is also possible to use the *_VERSION_MIN_REQUIRED in source code to make one
99*27b03b36SApple OSS Distributions     source base that can be compiled to target a range of OS versions.  It is best
100*27b03b36SApple OSS Distributions     to not use the _MAC_* and __IPHONE_* macros for comparisons, but rather their values.
101*27b03b36SApple OSS Distributions     That is because you might get compiled on an old OS that does not define a later
102*27b03b36SApple OSS Distributions     OS version macro, and in the C preprocessor undefined values evaluate to zero
103*27b03b36SApple OSS Distributions     in expresssions, which could cause the #if expression to evaluate in an unexpected
104*27b03b36SApple OSS Distributions     way.
105*27b03b36SApple OSS Distributions 
106*27b03b36SApple OSS Distributions         #ifdef __MAC_OS_X_VERSION_MIN_REQUIRED
107*27b03b36SApple OSS Distributions             // code only compiled when targeting Mac OS X and not iPhone
108*27b03b36SApple OSS Distributions             // note use of 1050 instead of __MAC_10_5
109*27b03b36SApple OSS Distributions             #if __MAC_OS_X_VERSION_MIN_REQUIRED < 1050
110*27b03b36SApple OSS Distributions                 // code in here might run on pre-Leopard OS
111*27b03b36SApple OSS Distributions             #else
112*27b03b36SApple OSS Distributions                 // code here can assume Leopard or later
113*27b03b36SApple OSS Distributions             #endif
114*27b03b36SApple OSS Distributions         #endif
115*27b03b36SApple OSS Distributions 
116*27b03b36SApple OSS Distributions 
117*27b03b36SApple OSS Distributions */
118*27b03b36SApple OSS Distributions 
119*27b03b36SApple OSS Distributions #define __MAC_10_0            1000
120*27b03b36SApple OSS Distributions #define __MAC_10_1            1010
121*27b03b36SApple OSS Distributions #define __MAC_10_2            1020
122*27b03b36SApple OSS Distributions #define __MAC_10_3            1030
123*27b03b36SApple OSS Distributions #define __MAC_10_4            1040
124*27b03b36SApple OSS Distributions #define __MAC_10_5            1050
125*27b03b36SApple OSS Distributions #define __MAC_10_6            1060
126*27b03b36SApple OSS Distributions #define __MAC_10_7            1070
127*27b03b36SApple OSS Distributions #define __MAC_10_8            1080
128*27b03b36SApple OSS Distributions #define __MAC_10_9            1090
129*27b03b36SApple OSS Distributions #define __MAC_10_10         101000
130*27b03b36SApple OSS Distributions #define __MAC_10_10_2       101002
131*27b03b36SApple OSS Distributions #define __MAC_10_10_3       101003
132*27b03b36SApple OSS Distributions #define __MAC_10_11         101100
133*27b03b36SApple OSS Distributions #define __MAC_10_11_2       101102
134*27b03b36SApple OSS Distributions #define __MAC_10_11_3       101103
135*27b03b36SApple OSS Distributions #define __MAC_10_11_4       101104
136*27b03b36SApple OSS Distributions #define __MAC_10_12         101200
137*27b03b36SApple OSS Distributions #define __MAC_10_12_1       101201
138*27b03b36SApple OSS Distributions #define __MAC_10_12_2       101202
139*27b03b36SApple OSS Distributions #define __MAC_10_12_4       101204
140*27b03b36SApple OSS Distributions /* __MAC_NA is not defined to a value but is uses as a token by macros to indicate that the API is unavailable */
141*27b03b36SApple OSS Distributions 
142*27b03b36SApple OSS Distributions #define __IPHONE_2_0      20000
143*27b03b36SApple OSS Distributions #define __IPHONE_2_1      20100
144*27b03b36SApple OSS Distributions #define __IPHONE_2_2      20200
145*27b03b36SApple OSS Distributions #define __IPHONE_3_0      30000
146*27b03b36SApple OSS Distributions #define __IPHONE_3_1      30100
147*27b03b36SApple OSS Distributions #define __IPHONE_3_2      30200
148*27b03b36SApple OSS Distributions #define __IPHONE_4_0      40000
149*27b03b36SApple OSS Distributions #define __IPHONE_4_1      40100
150*27b03b36SApple OSS Distributions #define __IPHONE_4_2      40200
151*27b03b36SApple OSS Distributions #define __IPHONE_4_3      40300
152*27b03b36SApple OSS Distributions #define __IPHONE_5_0      50000
153*27b03b36SApple OSS Distributions #define __IPHONE_5_1      50100
154*27b03b36SApple OSS Distributions #define __IPHONE_6_0      60000
155*27b03b36SApple OSS Distributions #define __IPHONE_6_1      60100
156*27b03b36SApple OSS Distributions #define __IPHONE_7_0      70000
157*27b03b36SApple OSS Distributions #define __IPHONE_7_1      70100
158*27b03b36SApple OSS Distributions #define __IPHONE_8_0      80000
159*27b03b36SApple OSS Distributions #define __IPHONE_8_1      80100
160*27b03b36SApple OSS Distributions #define __IPHONE_8_2      80200
161*27b03b36SApple OSS Distributions #define __IPHONE_8_3      80300
162*27b03b36SApple OSS Distributions #define __IPHONE_8_4      80400
163*27b03b36SApple OSS Distributions #define __IPHONE_9_0      90000
164*27b03b36SApple OSS Distributions #define __IPHONE_9_1      90100
165*27b03b36SApple OSS Distributions #define __IPHONE_9_2      90200
166*27b03b36SApple OSS Distributions #define __IPHONE_9_3      90300
167*27b03b36SApple OSS Distributions #define __IPHONE_10_0    100000
168*27b03b36SApple OSS Distributions #define __IPHONE_10_1    100100
169*27b03b36SApple OSS Distributions #define __IPHONE_10_2    100200
170*27b03b36SApple OSS Distributions #define __IPHONE_10_3    100300
171*27b03b36SApple OSS Distributions /* __IPHONE_NA is not defined to a value but is uses as a token by macros to indicate that the API is unavailable */
172*27b03b36SApple OSS Distributions 
173*27b03b36SApple OSS Distributions #define __TVOS_9_0        90000
174*27b03b36SApple OSS Distributions #define __TVOS_9_1        90100
175*27b03b36SApple OSS Distributions #define __TVOS_9_2        90200
176*27b03b36SApple OSS Distributions #define __TVOS_10_0      100000
177*27b03b36SApple OSS Distributions #define __TVOS_10_0_1    100001
178*27b03b36SApple OSS Distributions #define __TVOS_10_1      100100
179*27b03b36SApple OSS Distributions #define __TVOS_10_2      100200
180*27b03b36SApple OSS Distributions 
181*27b03b36SApple OSS Distributions #define __WATCHOS_1_0     10000
182*27b03b36SApple OSS Distributions #define __WATCHOS_2_0     20000
183*27b03b36SApple OSS Distributions #define __WATCHOS_3_0     30000
184*27b03b36SApple OSS Distributions #define __WATCHOS_3_1     30100
185*27b03b36SApple OSS Distributions #define __WATCHOS_3_1_1   30101
186*27b03b36SApple OSS Distributions #define __WATCHOS_3_2     30200
187*27b03b36SApple OSS Distributions 
188*27b03b36SApple OSS Distributions #include <AvailabilityInternal.h>
189*27b03b36SApple OSS Distributions 
190*27b03b36SApple OSS Distributions #ifdef __IPHONE_OS_VERSION_MIN_REQUIRED
191*27b03b36SApple OSS Distributions     #define __OSX_AVAILABLE_STARTING(_osx, _ios) __AVAILABILITY_INTERNAL##_ios
192*27b03b36SApple OSS Distributions     #define __OSX_AVAILABLE_BUT_DEPRECATED(_osxIntro, _osxDep, _iosIntro, _iosDep) \
193*27b03b36SApple OSS Distributions                                                     __AVAILABILITY_INTERNAL##_iosIntro##_DEP##_iosDep
194*27b03b36SApple OSS Distributions     #define __OSX_AVAILABLE_BUT_DEPRECATED_MSG(_osxIntro, _osxDep, _iosIntro, _iosDep, _msg) \
195*27b03b36SApple OSS Distributions                                                     __AVAILABILITY_INTERNAL##_iosIntro##_DEP##_iosDep##_MSG(_msg)
196*27b03b36SApple OSS Distributions 
197*27b03b36SApple OSS Distributions #elif defined(__MAC_OS_X_VERSION_MIN_REQUIRED)
198*27b03b36SApple OSS Distributions     #define __OSX_AVAILABLE_STARTING(_osx, _ios) __AVAILABILITY_INTERNAL##_osx
199*27b03b36SApple OSS Distributions     #define __OSX_AVAILABLE_BUT_DEPRECATED(_osxIntro, _osxDep, _iosIntro, _iosDep) \
200*27b03b36SApple OSS Distributions                                                     __AVAILABILITY_INTERNAL##_osxIntro##_DEP##_osxDep
201*27b03b36SApple OSS Distributions     #define __OSX_AVAILABLE_BUT_DEPRECATED_MSG(_osxIntro, _osxDep, _iosIntro, _iosDep, _msg) \
202*27b03b36SApple OSS Distributions                                                     __AVAILABILITY_INTERNAL##_osxIntro##_DEP##_osxDep##_MSG(_msg)
203*27b03b36SApple OSS Distributions 
204*27b03b36SApple OSS Distributions #else
205*27b03b36SApple OSS Distributions     #define __OSX_AVAILABLE_STARTING(_osx, _ios)
206*27b03b36SApple OSS Distributions     #define __OSX_AVAILABLE_BUT_DEPRECATED(_osxIntro, _osxDep, _iosIntro, _iosDep)
207*27b03b36SApple OSS Distributions     #define __OSX_AVAILABLE_BUT_DEPRECATED_MSG(_osxIntro, _osxDep, _iosIntro, _iosDep, _msg)
208*27b03b36SApple OSS Distributions #endif
209*27b03b36SApple OSS Distributions 
210*27b03b36SApple OSS Distributions 
211*27b03b36SApple OSS Distributions #if defined(__has_feature)
212*27b03b36SApple OSS Distributions   #if __has_feature(attribute_availability_with_message)
213*27b03b36SApple OSS Distributions     #define __OS_AVAILABILITY(_target, _availability)            __attribute__((availability(_target,_availability)))
214*27b03b36SApple OSS Distributions     #define __OS_AVAILABILITY_MSG(_target, _availability, _msg)  __attribute__((availability(_target,_availability,message=_msg)))
215*27b03b36SApple OSS Distributions   #elif __has_feature(attribute_availability)
216*27b03b36SApple OSS Distributions     #define __OS_AVAILABILITY(_target, _availability)            __attribute__((availability(_target,_availability)))
217*27b03b36SApple OSS Distributions     #define __OS_AVAILABILITY_MSG(_target, _availability, _msg)  __attribute__((availability(_target,_availability)))
218*27b03b36SApple OSS Distributions   #else
219*27b03b36SApple OSS Distributions     #define __OS_AVAILABILITY(_target, _availability)
220*27b03b36SApple OSS Distributions     #define __OS_AVAILABILITY_MSG(_target, _availability, _msg)
221*27b03b36SApple OSS Distributions   #endif
222*27b03b36SApple OSS Distributions #else
223*27b03b36SApple OSS Distributions     #define __OS_AVAILABILITY(_target, _availability)
224*27b03b36SApple OSS Distributions     #define __OS_AVAILABILITY_MSG(_target, _availability, _msg)
225*27b03b36SApple OSS Distributions #endif
226*27b03b36SApple OSS Distributions 
227*27b03b36SApple OSS Distributions 
228*27b03b36SApple OSS Distributions /* for use to document app extension usage */
229*27b03b36SApple OSS Distributions #if defined(__has_feature)
230*27b03b36SApple OSS Distributions   #if __has_feature(attribute_availability_app_extension)
231*27b03b36SApple OSS Distributions     #define __OSX_EXTENSION_UNAVAILABLE(_msg)  __OS_AVAILABILITY_MSG(macosx_app_extension,unavailable,_msg)
232*27b03b36SApple OSS Distributions     #define __IOS_EXTENSION_UNAVAILABLE(_msg)  __OS_AVAILABILITY_MSG(ios_app_extension,unavailable,_msg)
233*27b03b36SApple OSS Distributions   #else
234*27b03b36SApple OSS Distributions     #define __OSX_EXTENSION_UNAVAILABLE(_msg)
235*27b03b36SApple OSS Distributions     #define __IOS_EXTENSION_UNAVAILABLE(_msg)
236*27b03b36SApple OSS Distributions   #endif
237*27b03b36SApple OSS Distributions #else
238*27b03b36SApple OSS Distributions     #define __OSX_EXTENSION_UNAVAILABLE(_msg)
239*27b03b36SApple OSS Distributions     #define __IOS_EXTENSION_UNAVAILABLE(_msg)
240*27b03b36SApple OSS Distributions #endif
241*27b03b36SApple OSS Distributions 
242*27b03b36SApple OSS Distributions #define __OS_EXTENSION_UNAVAILABLE(_msg)  __OSX_EXTENSION_UNAVAILABLE(_msg) __IOS_EXTENSION_UNAVAILABLE(_msg)
243*27b03b36SApple OSS Distributions 
244*27b03b36SApple OSS Distributions 
245*27b03b36SApple OSS Distributions 
246*27b03b36SApple OSS Distributions /* for use marking APIs available info for Mac OSX */
247*27b03b36SApple OSS Distributions #if defined(__has_attribute)
248*27b03b36SApple OSS Distributions   #if __has_attribute(availability)
249*27b03b36SApple OSS Distributions     #define __OSX_UNAVAILABLE                    __OS_AVAILABILITY(macosx,unavailable)
250*27b03b36SApple OSS Distributions     #define __OSX_AVAILABLE(_vers)               __OS_AVAILABILITY(macosx,introduced=_vers)
251*27b03b36SApple OSS Distributions     #define __OSX_DEPRECATED(_start, _dep, _msg) __OSX_AVAILABLE(_start) __OS_AVAILABILITY_MSG(macosx,deprecated=_dep,_msg)
252*27b03b36SApple OSS Distributions   #endif
253*27b03b36SApple OSS Distributions #endif
254*27b03b36SApple OSS Distributions 
255*27b03b36SApple OSS Distributions #ifndef __OSX_UNAVAILABLE
256*27b03b36SApple OSS Distributions   #define __OSX_UNAVAILABLE
257*27b03b36SApple OSS Distributions #endif
258*27b03b36SApple OSS Distributions 
259*27b03b36SApple OSS Distributions #ifndef __OSX_AVAILABLE
260*27b03b36SApple OSS Distributions   #define __OSX_AVAILABLE(_vers)
261*27b03b36SApple OSS Distributions #endif
262*27b03b36SApple OSS Distributions 
263*27b03b36SApple OSS Distributions #ifndef __OSX_DEPRECATED
264*27b03b36SApple OSS Distributions   #define __OSX_DEPRECATED(_start, _dep, _msg)
265*27b03b36SApple OSS Distributions #endif
266*27b03b36SApple OSS Distributions 
267*27b03b36SApple OSS Distributions 
268*27b03b36SApple OSS Distributions /* for use marking APIs available info for iOS */
269*27b03b36SApple OSS Distributions #if defined(__has_attribute)
270*27b03b36SApple OSS Distributions   #if __has_attribute(availability)
271*27b03b36SApple OSS Distributions     #define __IOS_UNAVAILABLE                    __OS_AVAILABILITY(ios,unavailable)
272*27b03b36SApple OSS Distributions     #define __IOS_PROHIBITED                     __OS_AVAILABILITY(ios,unavailable)
273*27b03b36SApple OSS Distributions     #define __IOS_AVAILABLE(_vers)               __OS_AVAILABILITY(ios,introduced=_vers)
274*27b03b36SApple OSS Distributions     #define __IOS_DEPRECATED(_start, _dep, _msg) __IOS_AVAILABLE(_start) __OS_AVAILABILITY_MSG(ios,deprecated=_dep,_msg)
275*27b03b36SApple OSS Distributions   #endif
276*27b03b36SApple OSS Distributions #endif
277*27b03b36SApple OSS Distributions 
278*27b03b36SApple OSS Distributions #ifndef __IOS_UNAVAILABLE
279*27b03b36SApple OSS Distributions   #define __IOS_UNAVAILABLE
280*27b03b36SApple OSS Distributions #endif
281*27b03b36SApple OSS Distributions 
282*27b03b36SApple OSS Distributions #ifndef __IOS_PROHIBITED
283*27b03b36SApple OSS Distributions   #define __IOS_PROHIBITED
284*27b03b36SApple OSS Distributions #endif
285*27b03b36SApple OSS Distributions 
286*27b03b36SApple OSS Distributions #ifndef __IOS_AVAILABLE
287*27b03b36SApple OSS Distributions   #define __IOS_AVAILABLE(_vers)
288*27b03b36SApple OSS Distributions #endif
289*27b03b36SApple OSS Distributions 
290*27b03b36SApple OSS Distributions #ifndef __IOS_DEPRECATED
291*27b03b36SApple OSS Distributions   #define __IOS_DEPRECATED(_start, _dep, _msg)
292*27b03b36SApple OSS Distributions #endif
293*27b03b36SApple OSS Distributions 
294*27b03b36SApple OSS Distributions 
295*27b03b36SApple OSS Distributions /* for use marking APIs available info for tvOS */
296*27b03b36SApple OSS Distributions #if defined(__has_feature)
297*27b03b36SApple OSS Distributions   #if __has_feature(attribute_availability_tvos)
298*27b03b36SApple OSS Distributions     #define __TVOS_UNAVAILABLE                    __OS_AVAILABILITY(tvos,unavailable)
299*27b03b36SApple OSS Distributions     #define __TVOS_PROHIBITED                     __OS_AVAILABILITY(tvos,unavailable)
300*27b03b36SApple OSS Distributions     #define __TVOS_AVAILABLE(_vers)               __OS_AVAILABILITY(tvos,introduced=_vers)
301*27b03b36SApple OSS Distributions     #define __TVOS_DEPRECATED(_start, _dep, _msg) __TVOS_AVAILABLE(_start) __OS_AVAILABILITY_MSG(tvos,deprecated=_dep,_msg)
302*27b03b36SApple OSS Distributions   #endif
303*27b03b36SApple OSS Distributions #endif
304*27b03b36SApple OSS Distributions 
305*27b03b36SApple OSS Distributions #ifndef __TVOS_UNAVAILABLE
306*27b03b36SApple OSS Distributions   #define __TVOS_UNAVAILABLE
307*27b03b36SApple OSS Distributions #endif
308*27b03b36SApple OSS Distributions 
309*27b03b36SApple OSS Distributions #ifndef __TVOS_PROHIBITED
310*27b03b36SApple OSS Distributions   #define __TVOS_PROHIBITED
311*27b03b36SApple OSS Distributions #endif
312*27b03b36SApple OSS Distributions 
313*27b03b36SApple OSS Distributions #ifndef __TVOS_AVAILABLE
314*27b03b36SApple OSS Distributions   #define __TVOS_AVAILABLE(_vers)
315*27b03b36SApple OSS Distributions #endif
316*27b03b36SApple OSS Distributions 
317*27b03b36SApple OSS Distributions #ifndef __TVOS_DEPRECATED
318*27b03b36SApple OSS Distributions   #define __TVOS_DEPRECATED(_start, _dep, _msg)
319*27b03b36SApple OSS Distributions #endif
320*27b03b36SApple OSS Distributions 
321*27b03b36SApple OSS Distributions 
322*27b03b36SApple OSS Distributions /* for use marking APIs available info for Watch OS */
323*27b03b36SApple OSS Distributions #if defined(__has_feature)
324*27b03b36SApple OSS Distributions   #if __has_feature(attribute_availability_watchos)
325*27b03b36SApple OSS Distributions     #define __WATCHOS_UNAVAILABLE                    __OS_AVAILABILITY(watchos,unavailable)
326*27b03b36SApple OSS Distributions     #define __WATCHOS_PROHIBITED                     __OS_AVAILABILITY(watchos,unavailable)
327*27b03b36SApple OSS Distributions     #define __WATCHOS_AVAILABLE(_vers)               __OS_AVAILABILITY(watchos,introduced=_vers)
328*27b03b36SApple OSS Distributions     #define __WATCHOS_DEPRECATED(_start, _dep, _msg) __WATCHOS_AVAILABLE(_start) __OS_AVAILABILITY_MSG(watchos,deprecated=_dep,_msg)
329*27b03b36SApple OSS Distributions   #endif
330*27b03b36SApple OSS Distributions #endif
331*27b03b36SApple OSS Distributions 
332*27b03b36SApple OSS Distributions #ifndef __WATCHOS_UNAVAILABLE
333*27b03b36SApple OSS Distributions   #define __WATCHOS_UNAVAILABLE
334*27b03b36SApple OSS Distributions #endif
335*27b03b36SApple OSS Distributions 
336*27b03b36SApple OSS Distributions #ifndef __WATCHOS_PROHIBITED
337*27b03b36SApple OSS Distributions   #define __WATCHOS_PROHIBITED
338*27b03b36SApple OSS Distributions #endif
339*27b03b36SApple OSS Distributions 
340*27b03b36SApple OSS Distributions #ifndef __WATCHOS_AVAILABLE
341*27b03b36SApple OSS Distributions   #define __WATCHOS_AVAILABLE(_vers)
342*27b03b36SApple OSS Distributions #endif
343*27b03b36SApple OSS Distributions 
344*27b03b36SApple OSS Distributions #ifndef __WATCHOS_DEPRECATED
345*27b03b36SApple OSS Distributions   #define __WATCHOS_DEPRECATED(_start, _dep, _msg)
346*27b03b36SApple OSS Distributions #endif
347*27b03b36SApple OSS Distributions 
348*27b03b36SApple OSS Distributions 
349*27b03b36SApple OSS Distributions /* for use marking APIs unavailable for swift */
350*27b03b36SApple OSS Distributions #if defined(__has_feature)
351*27b03b36SApple OSS Distributions   #if __has_feature(attribute_availability_swift)
352*27b03b36SApple OSS Distributions     #define __SWIFT_UNAVAILABLE                   __OS_AVAILABILITY(swift,unavailable)
353*27b03b36SApple OSS Distributions     #define __SWIFT_UNAVAILABLE_MSG(_msg)         __OS_AVAILABILITY_MSG(swift,unavailable,_msg)
354*27b03b36SApple OSS Distributions   #endif
355*27b03b36SApple OSS Distributions #endif
356*27b03b36SApple OSS Distributions 
357*27b03b36SApple OSS Distributions #ifndef __SWIFT_UNAVAILABLE
358*27b03b36SApple OSS Distributions   #define __SWIFT_UNAVAILABLE
359*27b03b36SApple OSS Distributions #endif
360*27b03b36SApple OSS Distributions 
361*27b03b36SApple OSS Distributions #ifndef __SWIFT_UNAVAILABLE_MSG
362*27b03b36SApple OSS Distributions   #define __SWIFT_UNAVAILABLE_MSG(_msg)
363*27b03b36SApple OSS Distributions #endif
364*27b03b36SApple OSS Distributions 
365*27b03b36SApple OSS Distributions #if __has_include(<AvailabilityProhibitedInternal.h>)
366*27b03b36SApple OSS Distributions   #include <AvailabilityProhibitedInternal.h>
367*27b03b36SApple OSS Distributions #endif
368*27b03b36SApple OSS Distributions 
369*27b03b36SApple OSS Distributions /*
370*27b03b36SApple OSS Distributions  Macros for defining which versions/platform a given symbol can be used.
371*27b03b36SApple OSS Distributions 
372*27b03b36SApple OSS Distributions  @see http://clang.llvm.org/docs/AttributeReference.html#availability
373*27b03b36SApple OSS Distributions  */
374*27b03b36SApple OSS Distributions 
375*27b03b36SApple OSS Distributions /*
376*27b03b36SApple OSS Distributions  * API Introductions
377*27b03b36SApple OSS Distributions  *
378*27b03b36SApple OSS Distributions  * Use to specify the release that a particular API became available.
379*27b03b36SApple OSS Distributions  *
380*27b03b36SApple OSS Distributions  * Platform names:
381*27b03b36SApple OSS Distributions  *   macos, ios, tvos, watchos
382*27b03b36SApple OSS Distributions  *
383*27b03b36SApple OSS Distributions  * Examples:
384*27b03b36SApple OSS Distributions  *    __API_AVAILABLE(macos(10.10))
385*27b03b36SApple OSS Distributions  *    __API_AVAILABLE(macos(10.9), ios(10.0))
386*27b03b36SApple OSS Distributions  *    __API_AVAILABLE(macos(10.4), ios(8.0), watchos(2.0), tvos(10.0))
387*27b03b36SApple OSS Distributions  */
388*27b03b36SApple OSS Distributions #define __API_AVAILABLE(...) __API_AVAILABLE_GET_MACRO(__VA_ARGS__,__API_AVAILABLE4, __API_AVAILABLE3, __API_AVAILABLE2, __API_AVAILABLE1)(__VA_ARGS__)
389*27b03b36SApple OSS Distributions 
390*27b03b36SApple OSS Distributions 
391*27b03b36SApple OSS Distributions /*
392*27b03b36SApple OSS Distributions  * API Deprecations
393*27b03b36SApple OSS Distributions  *
394*27b03b36SApple OSS Distributions  * Use to specify the release that a particular API became unavailable.
395*27b03b36SApple OSS Distributions  *
396*27b03b36SApple OSS Distributions  * Platform names:
397*27b03b36SApple OSS Distributions  *   macos, ios, tvos, watchos
398*27b03b36SApple OSS Distributions  *
399*27b03b36SApple OSS Distributions  * Examples:
400*27b03b36SApple OSS Distributions  *
401*27b03b36SApple OSS Distributions  *    __API_DEPRECATED("No longer supported", macos(10.4, 10.8))
402*27b03b36SApple OSS Distributions  *    __API_DEPRECATED("No longer supported", macos(10.4, 10.8), ios(2.0, 3.0), watchos(2.0, 3.0), tvos(9.0, 10.0))
403*27b03b36SApple OSS Distributions  *
404*27b03b36SApple OSS Distributions  *    __API_DEPRECATED_WITH_REPLACEMENT("-setName:", tvos(10.0, 10.4), ios(9.0, 10.0))
405*27b03b36SApple OSS Distributions  *    __API_DEPRECATED_WITH_REPLACEMENT("SomeClassName", macos(10.4, 10.6), watchos(2.0, 3.0))
406*27b03b36SApple OSS Distributions  */
407*27b03b36SApple OSS Distributions #define __API_DEPRECATED(...) __API_DEPRECATED_MSG_GET_MACRO(__VA_ARGS__,__API_DEPRECATED_MSG5,__API_DEPRECATED_MSG4,__API_DEPRECATED_MSG3,__API_DEPRECATED_MSG2,__API_DEPRECATED_MSG1)(__VA_ARGS__)
408*27b03b36SApple OSS Distributions #define __API_DEPRECATED_WITH_REPLACEMENT(...) __API_DEPRECATED_REP_GET_MACRO(__VA_ARGS__,__API_DEPRECATED_REP5,__API_DEPRECATED_REP4,__API_DEPRECATED_REP3,__API_DEPRECATED_REP2,__API_DEPRECATED_REP1)(__VA_ARGS__)
409*27b03b36SApple OSS Distributions 
410*27b03b36SApple OSS Distributions /*
411*27b03b36SApple OSS Distributions  * API Unavailability
412*27b03b36SApple OSS Distributions  * Use to specify that an API is unavailable for a particular platform.
413*27b03b36SApple OSS Distributions  *
414*27b03b36SApple OSS Distributions  * Example:
415*27b03b36SApple OSS Distributions  *    __API_UNAVAILABLE(macos)
416*27b03b36SApple OSS Distributions  *    __API_UNAVAILABLE(watchos, tvos)
417*27b03b36SApple OSS Distributions  */
418*27b03b36SApple OSS Distributions #define __API_UNAVAILABLE(...) __API_UNAVAILABLE_GET_MACRO(__VA_ARGS__,__API_UNAVAILABLE3,__API_UNAVAILABLE2,__API_UNAVAILABLE1)(__VA_ARGS__)
419*27b03b36SApple OSS Distributions 
420*27b03b36SApple OSS Distributions #endif /* __AVAILABILITY__ */
421