Files

15 lines
110 B
OpenEdge ABL
Raw Permalink Normal View History

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