git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2008-cherylfoil@10791 626c5289-ae23-0410-ae9c-e8d60b6d4f22
11 lines
209 B
OpenEdge ABL
11 lines
209 B
OpenEdge ABL
/* File : example.i */
|
|
%module example
|
|
|
|
%inline %{
|
|
/*! Function foo
|
|
\param x int x
|
|
\param y int y
|
|
\return the gcd */
|
|
extern int gcd(int x, int y);
|
|
extern double Foo; /*!< description of double foo */
|
|
%}
|