swig/Examples/test-suite/python/swigobject.i
Marcelo Matus 27acb50747 fix format warning
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@8715 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2006-02-05 04:08:28 +00:00

25 lines
293 B
OpenEdge ABL

%module swigobject
%inline
{
struct A {
char name[4];
};
const char* pointer_str(A *a){
static char result[1024];
sprintf(result,"0x%lx", (unsigned long)(void *)a);
return result;
}
A *a_ptr(A *a){
return a;
}
void *v_ptr(void *a){
return a;
}
}