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