1 2 3 4 5 6 7 8 9 10 11 12 13 14
#ifndef DEFS_H #define DEFS_H #ifdef CONFIG_NATIVE_WINDOWS #ifdef FALSE #undef FALSE #endif #ifdef TRUE #undef TRUE #endif #endif /* CONFIG_NATIVE_WINDOWS */ typedef enum { FALSE = 0, TRUE = 1 } Boolean; #endif /* DEFS_H */