|
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. */ | |
dmichael (off chromium)
2011/08/24 21:15:29
Looks like a problem in generating that comment...
noelallen1
2011/08/24 22:43:06
This is correct based on the input IDL, but I can
| |
16 | |
17 | |
18 /** | |
19 * @addtogroup Structs | |
20 * @{ | |
21 */ | |
22 /* Bogus Struct */ | |
dmichael (off chromium)
2011/08/24 21:15:29
Should the comment become a doxygen-style comment?
noelallen1
2011/08/24 22:43:06
Yes. This is correct based on the input IDL. The
| |
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); | |
dmichael (off chromium)
2011/08/24 21:15:29
Maybe you can throw a comment somewhere (wherever
noelallen1
2011/08/24 22:43:06
The place that makes sense is the CL itself I thin
| |
36 }; | |
37 /** | |
38 * @} | |
39 */ | |
40 | |
41 #endif /* PPAPI_C_TEST_CGEN_RANGE_VERSIONS_H_ */ | |
42 | |
OLD | NEW |