|
@@ -34,9 +34,14 @@ typedef bool BOOLEAN;
|
|
#define CONST const
|
|
#define CONST const
|
|
#endif
|
|
#endif
|
|
#ifndef TRUE
|
|
#ifndef TRUE
|
|
|
|
+#if defined(__cplusplus) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L)
|
|
|
|
+ #define TRUE true
|
|
|
|
+ #define FALSE false
|
|
|
|
+#else
|
|
#define TRUE ((BOOLEAN) 1)
|
|
#define TRUE ((BOOLEAN) 1)
|
|
#define FALSE ((BOOLEAN) 0)
|
|
#define FALSE ((BOOLEAN) 0)
|
|
#endif
|
|
#endif
|
|
|
|
+#endif
|
|
|
|
|
|
#ifndef NULL
|
|
#ifndef NULL
|
|
#define NULL ((VOID *) 0)
|
|
#define NULL ((VOID *) 0)
|