Files
cpp-thirdparty/winx64/bin/swig-3.0.12/Examples/test-suite/global_functions.i
Bassem Girgis 81b4b9e273 Initial commit
2018-12-20 17:34:07 -06:00

9 lines
148 B
OpenEdge ABL

%module global_functions
%inline %{
void global_void(void) {}
int global_one(int i) { return i; }
int global_two(int i, int j) { return i+j; }
%}