Files
cpp-thirdparty/winx64/bin/swigwin-4.0.0/Examples/test-suite/errors/c_redefine.i
2019-08-04 21:38:19 -05:00

21 lines
130 B
OpenEdge ABL

%module xxx
int foo(int x, int y);
int foo;
int bar(int x);
struct bar {
int y;
};
%rename(bar) spam;
int spam(int);