if the name ordering was in a certain order. Added new example programs (dual, embed) and runtime tests for test-suite. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10177 626c5289-ae23-0410-ae9c-e8d60b6d4f22
10 lines
93 B
OpenEdge ABL
10 lines
93 B
OpenEdge ABL
/* File : example.i */
|
|
%module example
|
|
|
|
%inline %{
|
|
|
|
struct Foo{
|
|
int i;
|
|
};
|
|
|
|
%}
|