15 lines
110 B
OpenEdge ABL
15 lines
110 B
OpenEdge ABL
|
|
%module struct_value
|
||
|
|
|
||
|
|
%inline %{
|
||
|
|
|
||
|
|
struct Foo {
|
||
|
|
int x;
|
||
|
|
};
|
||
|
|
|
||
|
|
struct Bar {
|
||
|
|
Foo a;
|
||
|
|
struct Foo b;
|
||
|
|
};
|
||
|
|
|
||
|
|
%}
|