X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/779cb6e326391280631d0b486957d5e576eb23ea..d0899514fa9495013cb73c8ead8c5a5baaf49111:/lib/python/swig.h diff --git a/lib/python/swig.h b/lib/python/swig.h index b5cb77af..23ce9aad 100644 --- a/lib/python/swig.h +++ b/lib/python/swig.h @@ -4,17 +4,23 @@ #ifdef SWIG #define TEMPLATE_TYPEDEF(x, y) \ %template(y) x; \ -typedef x y +typedef x y; \ +%typemap_output_ptr(x); +#define SWIG_ALLOW_OUTPUT_SIMPLE(x) %typemap_output_simple(x); #else #define TEMPLATE_TYPEDEF(x, y) typedef x y +#define SWIG_ALLOW_OUTPUT_SIMPLE(x) #endif + #ifdef SWIG #define SWIG_INPUT INPUT #define SWIG_OUTPUT OUTPUT +#define SWIG_VOID(x) void #else #define SWIG_INPUT #define SWIG_OUTPUT +#define SWIG_VOID(x) x #endif #endif