git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2008-maciekd@10618 626c5289-ae23-0410-ae9c-e8d60b6d4f22
12 lines
240 B
OpenEdge ABL
12 lines
240 B
OpenEdge ABL
/* File : example.i */
|
|
%module example
|
|
|
|
%inline %{
|
|
extern double Foo;
|
|
extern double *Foo_ptr;
|
|
extern char *my_str;
|
|
extern char **array_of_strs;
|
|
extern char *get_str(int i, void* ptr, float ff);
|
|
extern int gcd(int x, int y);
|
|
%}
|
|
|