mirror of
https://github.com/UberGames/GtkRadiant.git
synced 2024-11-12 23:44:13 +00:00
21 lines
433 B
C
21 lines
433 B
C
#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
|