OLD | NEW |
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
3 * found in the LICENSE file. | 3 * found in the LICENSE file. |
4 */ | 4 */ |
5 | 5 |
6 /* From pp_macros.idl modified Fri Jun 6 18:08:58 2014. */ | 6 /* From pp_macros.idl modified Thu Sep 18 11:36:39 2014. */ |
7 | 7 |
8 #ifndef PPAPI_C_PP_MACROS_H_ | 8 #ifndef PPAPI_C_PP_MACROS_H_ |
9 #define PPAPI_C_PP_MACROS_H_ | 9 #define PPAPI_C_PP_MACROS_H_ |
10 | 10 |
| 11 |
11 #define PPAPI_RELEASE 40 | 12 #define PPAPI_RELEASE 40 |
12 | 13 |
13 /** | 14 /** |
14 * @file | 15 * @file |
15 * Defines the common macros such as assert, inline, ... | 16 * Defines the common macros such as assert, inline, ... |
16 */ | 17 */ |
17 | 18 |
18 | 19 |
19 | 20 |
20 /* | 21 /* |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 #define PP_COMPILE_ASSERT_ENUM_SIZE_IN_BYTES(NAME, SIZE) \ | 95 #define PP_COMPILE_ASSERT_ENUM_SIZE_IN_BYTES(NAME, SIZE) \ |
95 PP_COMPILE_ASSERT_SIZE_IN_BYTES_IMPL(NAME, enum NAME, SIZE) | 96 PP_COMPILE_ASSERT_SIZE_IN_BYTES_IMPL(NAME, enum NAME, SIZE) |
96 | 97 |
97 /** | 98 /** |
98 * @} | 99 * @} |
99 * End of addtogroup PP | 100 * End of addtogroup PP |
100 */ | 101 */ |
101 | 102 |
102 #endif /* PPAPI_C_PP_MACROS_H_ */ | 103 #endif /* PPAPI_C_PP_MACROS_H_ */ |
103 | 104 |
OLD | NEW |