git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@329 626c5289-ae23-0410-ae9c-e8d60b6d4f22
11 lines
219 B
OpenEdge ABL
11 lines
219 B
OpenEdge ABL
/* File : example.i */
|
|
%module example
|
|
%{
|
|
/* Put headers and other declarations here */
|
|
%}
|
|
|
|
|
|
extern double My_variable;
|
|
extern int fact(int);
|
|
%name(mod) extern int my_mod(int n, int m);
|
|
extern char *get_time();
|