git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@7707 626c5289-ae23-0410-ae9c-e8d60b6d4f22
38 lines
388 B
OpenEdge ABL
38 lines
388 B
OpenEdge ABL
%module langobj
|
|
|
|
|
|
#ifndef SWIG_Object
|
|
#define SWIG_Object void *
|
|
#endif
|
|
|
|
|
|
%inline %{
|
|
|
|
#ifdef SWIGTCL
|
|
#define SWIG_Object Tcl_Obj *
|
|
#endif
|
|
|
|
#ifdef SWIGPYTHON
|
|
#define SWIG_Object PyObject *
|
|
#endif
|
|
|
|
#ifdef SWIGRUBY
|
|
#define SWIG_Object VALUE
|
|
#endif
|
|
|
|
#ifndef SWIG_Object
|
|
#define SWIG_Object void *
|
|
#endif
|
|
|
|
%}
|
|
|
|
|
|
%inline %{
|
|
|
|
SWIG_Object identity(SWIG_Object x) {
|
|
return x;
|
|
}
|
|
|
|
%}
|
|
|
|
|