swig/Examples/test-suite/struct_value.i

15 lines
110 B
OpenEdge ABL

%module struct_value
%inline %{
struct Foo {
int x;
};
struct Bar {
Foo a;
struct Foo b;
};
%}