Files
cpp-thirdparty/winx64/bin/swig-3.0.12/Examples/test-suite/errors/c_redefine.i
Bassem Girgis 81b4b9e273 Initial commit
2018-12-20 17:34:07 -06: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);