From 561a35b16d8ff649ccfc0a4e328019a9e3e913a0 Mon Sep 17 00:00:00 2001 From: Colin Finck Date: Fri, 14 Sep 2007 19:23:36 +0000 Subject: [PATCH] And here comes the next fix, this time for fixing the LiveCD build svn path=/trunk/; revision=29045 --- reactos/lib/cmlib/hivedata.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/reactos/lib/cmlib/hivedata.h b/reactos/lib/cmlib/hivedata.h index 108f677f5ff..dcc6d836bfc 100644 --- a/reactos/lib/cmlib/hivedata.h +++ b/reactos/lib/cmlib/hivedata.h @@ -43,7 +43,11 @@ typedef ULONG HCELL_INDEX, *PHCELL_INDEX; #define HvGetCellType(Cell) \ ((ULONG)((Cell & HCELL_TYPE_MASK) >> HCELL_TYPE_SHIFT)) +#ifdef CMLIB_HOST +#include +#else #include +#endif /** * @name HBASE_BLOCK @@ -127,7 +131,11 @@ typedef struct _HCELL LONG Size; } HCELL, *PHCELL; +#ifdef CMLIB_HOST +#include +#else #include +#endif #define IsFreeCell(Cell)(Cell->Size >= 0) #define IsUsedCell(Cell)(Cell->Size < 0)