C和C++混合编程中使用bool

在原来bool类型的定义处替换成如下代码即可:

#ifndef  __cplusplus
#define true 1 
#define false 0 
typedef unsigned char bool;
#endif

你可能感兴趣的:(C和C++混合编程中使用bool)