Author: cfinck
Date: Fri Sep 14 23:23:36 2007
New Revision: 29045
URL: 
http://svn.reactos.org/svn/reactos?rev=29045&view=rev
Log:
And here comes the next fix, this time for fixing the LiveCD build
Modified:
    trunk/reactos/lib/cmlib/hivedata.h
Modified: trunk/reactos/lib/cmlib/hivedata.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/cmlib/hivedata.h?rev=2…
==============================================================================
--- trunk/reactos/lib/cmlib/hivedata.h (original)
+++ trunk/reactos/lib/cmlib/hivedata.h Fri Sep 14 23:23:36 2007
@@ -43,7 +43,11 @@
 #define HvGetCellType(Cell)             \
     ((ULONG)((Cell & HCELL_TYPE_MASK) >> HCELL_TYPE_SHIFT))
+#ifdef CMLIB_HOST
+#include <host/pshpack1.h>
+#else
 #include <pshpack1.h>
+#endif
 /**
  * @name HBASE_BLOCK
@@ -127,7 +131,11 @@
    LONG Size;
 } HCELL, *PHCELL;
+#ifdef CMLIB_HOST
+#include <host/poppack.h>
+#else
 #include <poppack.h>
+#endif
 #define IsFreeCell(Cell)(Cell->Size >= 0)
 #define IsUsedCell(Cell)(Cell->Size < 0)