mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 14:25:52 +00:00
And here comes the next fix, this time for fixing the LiveCD build
svn path=/trunk/; revision=29045
This commit is contained in:
parent
2b47cce3f0
commit
561a35b16d
1 changed files with 8 additions and 0 deletions
|
@ -43,7 +43,11 @@ typedef ULONG HCELL_INDEX, *PHCELL_INDEX;
|
||||||
#define HvGetCellType(Cell) \
|
#define HvGetCellType(Cell) \
|
||||||
((ULONG)((Cell & HCELL_TYPE_MASK) >> HCELL_TYPE_SHIFT))
|
((ULONG)((Cell & HCELL_TYPE_MASK) >> HCELL_TYPE_SHIFT))
|
||||||
|
|
||||||
|
#ifdef CMLIB_HOST
|
||||||
|
#include <host/pshpack1.h>
|
||||||
|
#else
|
||||||
#include <pshpack1.h>
|
#include <pshpack1.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @name HBASE_BLOCK
|
* @name HBASE_BLOCK
|
||||||
|
@ -127,7 +131,11 @@ typedef struct _HCELL
|
||||||
LONG Size;
|
LONG Size;
|
||||||
} HCELL, *PHCELL;
|
} HCELL, *PHCELL;
|
||||||
|
|
||||||
|
#ifdef CMLIB_HOST
|
||||||
|
#include <host/poppack.h>
|
||||||
|
#else
|
||||||
#include <poppack.h>
|
#include <poppack.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#define IsFreeCell(Cell)(Cell->Size >= 0)
|
#define IsFreeCell(Cell)(Cell->Size >= 0)
|
||||||
#define IsUsedCell(Cell)(Cell->Size < 0)
|
#define IsUsedCell(Cell)(Cell->Size < 0)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue