1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
%module qmfengine // These are probably wrong.. just to get it to compile for now. %typemap (in) void * { $1 = (void *) $input; } %typemap (out) void * { $result = (PyObject *) $1; } %include "../qmfengine.i"