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