swig/Examples/php4/simple/example.i
Kevin Ruland 24442fb756 Change example so it builds Foo_get() and Foo_set() wrappers. Use these
wrappers in the runme.php4.  Added wrapped method print_Foo() just to make
sure all is working.


git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@7462 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2005-09-20 13:53:44 +00:00

10 lines
132 B
OpenEdge ABL

/* File : example.i */
%module example
%{
extern double Foo;
%}
extern double Foo;
void print_Foo();
int gcd(int x, int y);