git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@8584 626c5289-ae23-0410-ae9c-e8d60b6d4f22
41 lines
430 B
OpenEdge ABL
41 lines
430 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) {
|
|
#ifdef SWIGPYTHON
|
|
Py_XINCREF(x);
|
|
#endif
|
|
return x;
|
|
}
|
|
|
|
}
|
|
|
|
|