blob: 6e4b8ab1d33e2a41bbe725ae8c432dc235535c1d [file] [log] [blame]
Josh Gaobfb6bae2016-07-15 17:25:21 -07001/*
Elliott Hughesdfb74c52016-10-24 12:53:17 -07002 * Copyright (C) 2016 The Android Open Source Project
Josh Gaobfb6bae2016-07-15 17:25:21 -07003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
Elliott Hughesdfb74c52016-10-24 12:53:17 -07008 * http://www.apache.org/licenses/LICENSE-2.0
Josh Gaobfb6bae2016-07-15 17:25:21 -07009 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef ANDROID_VERSIONING_H
18#define ANDROID_VERSIONING_H
19
Logan Chienaede30d2018-10-23 15:03:43 +080020#ifndef __STRING
21#define __STRING(x) #x
22#endif
23
Josh Gaof3aa3002018-08-27 13:59:42 -070024#define __INTRODUCED_IN(api_level) __attribute__((annotate("introduced_in=" __STRING(api_level))))
Josh Gaobfb6bae2016-07-15 17:25:21 -070025#define __INTRODUCED_IN_FUTURE __attribute__((annotate("introduced_in_future")))
Josh Gaof3aa3002018-08-27 13:59:42 -070026#define __DEPRECATED_IN(api_level) __attribute__((annotate("deprecated_in=" __STRING(api_level))))
27#define __REMOVED_IN(api_level) __attribute__((annotate("obsoleted_in=" __STRING(api_level))))
28#define __INTRODUCED_IN_32(api_level) __attribute__((annotate("introduced_in_32=" __STRING(api_level))))
29#define __INTRODUCED_IN_64(api_level) __attribute__((annotate("introduced_in_64=" __STRING(api_level))))
30#define __INTRODUCED_IN_ARM(api_level) __attribute__((annotate("introduced_in_arm=" __STRING(api_level))))
31#define __INTRODUCED_IN_X86(api_level) __attribute__((annotate("introduced_in_x86=" __STRING(api_level))))
32#define __INTRODUCED_IN_MIPS(api_level) __attribute__((annotate("introduced_in_mips=" __STRING(api_level))))
Josh Gaobfb6bae2016-07-15 17:25:21 -070033
Josh Gaofff29fe2016-09-07 18:29:08 -070034#define __VERSIONER_NO_GUARD __attribute__((annotate("versioner_no_guard")))
35
Josh Gaobfb6bae2016-07-15 17:25:21 -070036#endif /* ANDROID_VERSIONING_H */