Added missing ULONG to static const OFFSET_xx.
This commit is contained in:
parent
df1d1e1460
commit
0b64c85799
|
@ -26,27 +26,27 @@ static const ULONG OFFSET_SBDEPOTSTART = 0x0000003C;
|
|||
static const ULONG OFFSET_EXTBBDEPOTSTART = 0x00000044;
|
||||
static const ULONG OFFSET_EXTBBDEPOTCOUNT = 0x00000048;
|
||||
static const ULONG OFFSET_BBDEPOTSTART = 0x0000004C;
|
||||
static const OFFSET_PS_NAME = 0x00000000;
|
||||
static const OFFSET_PS_NAMELENGTH = 0x00000040;
|
||||
static const OFFSET_PS_PROPERTYTYPE = 0x00000042;
|
||||
static const OFFSET_PS_BLOCKTYPE = 0x00000043;
|
||||
static const OFFSET_PS_PREVIOUSPROP = 0x00000044;
|
||||
static const OFFSET_PS_NEXTPROP = 0x00000048;
|
||||
static const OFFSET_PS_DIRPROP = 0x0000004C;
|
||||
static const OFFSET_PS_GUID = 0x00000050;
|
||||
static const OFFSET_PS_TSS1 = 0x00000064;
|
||||
static const OFFSET_PS_TSD1 = 0x00000068;
|
||||
static const OFFSET_PS_TSS2 = 0x0000006C;
|
||||
static const OFFSET_PS_TSD2 = 0x00000070;
|
||||
static const OFFSET_PS_STARTBLOCK = 0x00000074;
|
||||
static const OFFSET_PS_SIZE = 0x00000078;
|
||||
static const ULONG OFFSET_PS_NAME = 0x00000000;
|
||||
static const ULONG OFFSET_PS_NAMELENGTH = 0x00000040;
|
||||
static const ULONG OFFSET_PS_PROPERTYTYPE = 0x00000042;
|
||||
static const ULONG OFFSET_PS_BLOCKTYPE = 0x00000043;
|
||||
static const ULONG OFFSET_PS_PREVIOUSPROP = 0x00000044;
|
||||
static const ULONG OFFSET_PS_NEXTPROP = 0x00000048;
|
||||
static const ULONG OFFSET_PS_DIRPROP = 0x0000004C;
|
||||
static const ULONG OFFSET_PS_GUID = 0x00000050;
|
||||
static const ULONG OFFSET_PS_TSS1 = 0x00000064;
|
||||
static const ULONG OFFSET_PS_TSD1 = 0x00000068;
|
||||
static const ULONG OFFSET_PS_TSS2 = 0x0000006C;
|
||||
static const ULONG OFFSET_PS_TSD2 = 0x00000070;
|
||||
static const ULONG OFFSET_PS_STARTBLOCK = 0x00000074;
|
||||
static const ULONG OFFSET_PS_SIZE = 0x00000078;
|
||||
static const WORD DEF_BIG_BLOCK_SIZE_BITS = 0x0009;
|
||||
static const WORD DEF_SMALL_BLOCK_SIZE_BITS = 0x0006;
|
||||
static const WORD DEF_BIG_BLOCK_SIZE = 0x0200;
|
||||
static const WORD DEF_SMALL_BLOCK_SIZE = 0x0040;
|
||||
static const ULONG BLOCK_SPECIAL = 0xFFFFFFFD;
|
||||
static const ULONG BLOCK_SPECIAL = 0xFFFFFFFD;
|
||||
static const ULONG BLOCK_END_OF_CHAIN = 0xFFFFFFFE;
|
||||
static const ULONG BLOCK_UNUSED = 0xFFFFFFFF;
|
||||
static const ULONG BLOCK_UNUSED = 0xFFFFFFFF;
|
||||
static const ULONG PROPERTY_NULL = 0xFFFFFFFF;
|
||||
|
||||
#define PROPERTY_NAME_MAX_LEN 0x20
|
||||
|
|
Loading…
Reference in New Issue