< prev index next >
test/jdk/com/sun/tools/jextract/test8221154/srcgentest.h
Print this page
*** 34,53 ****
enum {
R, G, B
};
enum Color {
! REG, GREE, BLUE
};
struct Point {
int x, y;
};
EXPORT int num;
EXPORT int x_coord(struct Point* p);
EXPORT int y_coord(struct Point* p);
#ifdef __cplusplus
}
#endif // __cplusplus
--- 34,54 ----
enum {
R, G, B
};
enum Color {
! RED, GREEN, BLUE
};
struct Point {
int x, y;
};
EXPORT int num;
EXPORT int x_coord(struct Point* p);
EXPORT int y_coord(struct Point* p);
+ EXPORT int sum(int i, ...);
#ifdef __cplusplus
}
#endif // __cplusplus
< prev index next >