git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@50 626c5289-ae23-0410-ae9c-e8d60b6d4f22
21 lines
319 B
OpenEdge ABL
21 lines
319 B
OpenEdge ABL
/* File : example.i */
|
|
%module example
|
|
%{
|
|
/* Put headers and other declarations here */
|
|
|
|
char foo[] = "Help me!";
|
|
%}
|
|
|
|
typedef double * DoublePtr;
|
|
typedef double Real;
|
|
|
|
typedef Vector * Foo;
|
|
|
|
extern double My_variable;
|
|
extern int fact(int);
|
|
extern int mod(int n, int m);
|
|
extern char *get_time();
|
|
char foo[];
|
|
|
|
|
|
|