OLD | NEW |
(Empty) | |
| 1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 * Use of this source code is governed by a BSD-style license that can be |
| 3 * found in the LICENSE file. |
| 4 */ |
| 5 |
| 6 /* From test_cgen_range/versions.idl modified Wed Aug 24 10:35:01 2011. */ |
| 7 |
| 8 #ifndef PPAPI_C_TEST_CGEN_RANGE_VERSIONS_H_ |
| 9 #define PPAPI_C_TEST_CGEN_RANGE_VERSIONS_H_ |
| 10 |
| 11 #include "ppapi/c/pp_macros.h" |
| 12 |
| 13 /** |
| 14 * @file |
| 15 * File Comment. */ |
| 16 |
| 17 |
| 18 /** |
| 19 * @addtogroup Structs |
| 20 * @{ |
| 21 */ |
| 22 /* Bogus Struct */ |
| 23 struct PP_Size { |
| 24 /** |
| 25 * Comment for function |
| 26 */ |
| 27 int32_t (*Foo)(int32_t x); |
| 28 /** |
| 29 * Comment for function |
| 30 */ |
| 31 int32_t (*Foo)(int32_t x, int32_t y); |
| 32 /** |
| 33 * Comment for function |
| 34 */ |
| 35 int32_t (*Foo)(int32_t x, int32_t y, int32_t z); |
| 36 }; |
| 37 /** |
| 38 * @} |
| 39 */ |
| 40 |
| 41 #endif /* PPAPI_C_TEST_CGEN_RANGE_VERSIONS_H_ */ |
| 42 |
OLD | NEW |