blob: bb0f2b1821ae030ae054059d6cbb392842b81756 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
/* Copyright (c) 2011 The Chromium Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
/* From test_cgen_range/versions.idl modified Wed Nov 21 15:18:23 2012. */
#ifndef PPAPI_C_TEST_CGEN_RANGE_VERSIONS_H_
#define PPAPI_C_TEST_CGEN_RANGE_VERSIONS_H_
#include "ppapi/c/pp_macros.h"
#define FOO_INTERFACE_0_0 "Foo;0.0"
#define FOO_INTERFACE_1_0 "Foo;1.0"
#define FOO_INTERFACE_2_0 "Foo;2.0"
#define FOO_INTERFACE FOO_INTERFACE_2_0
/**
* @file
* File Comment. */
/**
* @addtogroup Interfaces
* @{
*/
/* Bogus Interface Foo */
struct Foo_2_0 {
/**
* Comment for function x,y,z
*/
int32_t (*Bar)(int32_t x, int32_t y, int32_t z);
};
typedef struct Foo_2_0 Foo;
struct Foo_0_0 {
int32_t (*Bar)(int32_t x);
};
struct Foo_1_0 {
int32_t (*Bar)(int32_t x, int32_t y);
};
/**
* @}
*/
#endif /* PPAPI_C_TEST_CGEN_RANGE_VERSIONS_H_ */
|