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

20 lines
302 B
OpenEdge ABL

/* Simple test to check SWIG's handling of return by value */
%module ret_by_value
%warnfilter(SWIGWARN_RUBY_WRONG_NAME) test; /* Ruby, wrong class name */
%inline %{
typedef struct {
int myInt;
short myShort;
} test;
test get_test() {
test myTest = {100, 200};
return myTest;
}
%}