add option for DHCP and possibility to disable configElements
[enigma2.git] / lib / python / swig.h
1 #ifndef __lib_python_swig_h
2 #define __lib_python_swig_h
3
4 #ifdef SWIG
5 #define TEMPLATE_TYPEDEF(x, y) \
6 %template(y) x; \
7 typedef x y
8 #else
9 #define TEMPLATE_TYPEDEF(x, y) typedef x y
10 #endif
11
12 #ifdef SWIG
13 #define SWIG_INPUT INPUT
14 #define SWIG_OUTPUT OUTPUT
15 #else
16 #define SWIG_INPUT
17 #define SWIG_OUTPUT
18 #endif
19
20 #endif