And here comes the next fix, this time for fixing the LiveCD build

svn path=/trunk/; revision=29045
This commit is contained in:
Colin Finck 2007-09-14 19:23:36 +00:00
parent 2b47cce3f0
commit 561a35b16d

View file

@ -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 <host/pshpack1.h>
#else
#include <pshpack1.h>
#endif
/**
* @name HBASE_BLOCK
@ -127,7 +131,11 @@ typedef struct _HCELL
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)