I'm getting the Syntax Error in input(1) error for this line of code, in C when I do:
swig -python myfile.i in console.
It concerns the following code, specifically the last line of these typedefs.
typedef unsigned short WORD;
typedef unsigned int DWORD;
typedef unsigned long long QWORD;
typedef unsigned char BYTE;
typedef unsigned int bool; //<= THIS LINE OF CODE TRIGGERS THE ERROR.
As far as I know, bool is not defined in C so I would think swig would let this go with no issue. I compiled as c in VS 2010 and it was just fine.
Mark