Files
cpp-thirdparty/winx64/bin/swigwin-4.0.0/Examples/test-suite/global_functions.i
2019-08-04 21:38:19 -05: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; }
%}