I am compiling a legacy C code here and there is a lot of variables and struct members named \"interface\", but VC2008 express is complaining about these, do you know how to
Problem is that MS #defines interface to struct so that
interface Name {...}
can be used in COM c++ code. (objbase.h:199: #define interface __STRUCT__)
#define interface __STRUCT__
Just #undef interface after including Windows.h ..
#undef interface