From 09e4426af38e5ed5b1b5eaf276bad011cc386ac3 Mon Sep 17 00:00:00 2001 From: Casper Hornstrup Date: Sun, 16 Mar 2003 12:45:03 +0000 Subject: [PATCH] 2003-03-16 Casper S. Hornstrup * include/ntos/types.h (FALSE): Protect with #ifndef FALSE. (TRUE): Protect with #ifndef TRUE. svn path=/trunk/; revision=4311 --- reactos/ChangeLog | 5 +++++ reactos/include/ntos/types.h | 4 ++++ 2 files changed, 9 insertions(+) diff --git a/reactos/ChangeLog b/reactos/ChangeLog index 1ac4c6cf62a..a0822deaa85 100644 --- a/reactos/ChangeLog +++ b/reactos/ChangeLog @@ -1,3 +1,8 @@ +2003-03-16 Casper S. Hornstrup + + * include/ntos/types.h (FALSE): Protect with #ifndef FALSE. + (TRUE): Protect with #ifndef TRUE. + 2003-03-16 Casper S. Hornstrup * include/napi/i386/segment.h (put_user, get_user, diff --git a/reactos/include/ntos/types.h b/reactos/include/ntos/types.h index 3efeef39e20..1987799eb90 100644 --- a/reactos/include/ntos/types.h +++ b/reactos/include/ntos/types.h @@ -231,8 +231,12 @@ typedef unsigned short *PRTL_ATOM; #endif /* __USE_W32API */ +#ifndef FALSE #define FALSE 0 +#endif +#ifndef TRUE #define TRUE 1 +#endif #ifndef NULL #ifdef __cplusplus