I am trying to use SWIG to generate a python interface module for a library that I do not control the source of. The library, for some reason, has this line:
#define VOID void
This is causing all kinds of issues with SWIG; it seems to think that VOID is an actual object that these functions will return.
Is there any way i can tell SWIG that VOID means void?


voidkeyword; for such compilers, it would probably have#define VOID intor#define VOID /* nothing */. This doesn't answer your question, though. – Keith Thompson Feb 12 at 16:46perl -p -i -e s/VOID/void/ *– piokuc Feb 12 at 17:01