12 lines
87 B
OpenEdge ABL
12 lines
87 B
OpenEdge ABL
%module example
|
|
|
|
%rename(Bar) Foo;
|
|
|
|
%inline %{
|
|
typedef struct {
|
|
int x;
|
|
} Foo;
|
|
|
|
%}
|
|
|