My Solution consists of Multiple C++ and one C project using VS 2015.
I am getting error error C2632: 'int' followed by 'bool' is illegal on following line of code in C header file.
#ifndef __cplusplus
typedef int bool;
#endif
this code was working fine in VS 2013
Any idea what could be the reason?