swig/Examples/chicken/simple/example.i
Jonah Beckford 6901abdf17 Initial addition.
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4313 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2003-02-15 01:56:34 +00:00

13 lines
275 B
OpenEdge ABL

/* File : example.i */
%module example
%{
/* Put headers and other declarations here */
%}
%include typemaps.i
extern double My_variable;
extern int fact(int);
%name(mod) extern int my_mod(int n, int m);
extern int my_mod(int n, int m);
extern char *get_time();