git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@7605 626c5289-ae23-0410-ae9c-e8d60b6d4f22
18 lines
458 B
Text
18 lines
458 B
Text
/* Python.h has to appear first */
|
|
%insert(runtime) %{
|
|
#include <Python.h>
|
|
%}
|
|
|
|
%insert(runtime) "swigrun.swg"; /* Common C API type-checking code */
|
|
%insert(runtime) "pyapi.swg"; /* SWIG/Pyton API */
|
|
%insert(runtime) "pyrun.swg"; /* Python run-time code */
|
|
|
|
|
|
/* When using -nortti, tell directors to avoid RTTI */
|
|
#ifdef SWIG_NORTTI
|
|
%insert("runtime") %{
|
|
#ifndef SWIG_DIRECTOR_NORTTI
|
|
#define SWIG_DIRECTOR_NORTTI
|
|
#endif
|
|
%}
|
|
#endif
|