gtkradiant/libs/bytebool.h

22 lines
433 B
C
Raw Normal View History

#ifndef __BYTEBOOL__
#define __BYTEBOOL__
// bool is a C++ type
// if we are compiling for C, use an enum
// this header is not really meant for direct inclusion,
// it is used by mathlib and cmdlib
#ifdef __cplusplus
typedef bool qboolean;
#define qtrue true
#define qfalse false
#else
typedef enum { qfalse, qtrue } qboolean;
typedef qboolean bool; // some code uses bool directly ..
#endif
typedef unsigned char byte;
#endif