swig/Examples/test-suite/arrayref.i
2003-01-31 22:01:53 +00:00

14 lines
144 B
OpenEdge ABL

// A function that passes arrays by reference
%module arrayref
%inline %{
void foo(const int (&x)[10]) {
}
void bar(int (&x)[10]) {
}
%}