fixing right define of struct typedef LARGE_MCB *PLARGE_MCB

svn path=/trunk/; revision=21863
This commit is contained in:
Magnus Olsen
2006-05-09 06:01:32 +00:00
parent 8a45279c78
commit 91179ea59c
+5 -3
View File
@@ -1230,10 +1230,12 @@ typedef struct _BASE_MCB
} BASE_MCB;
typedef BASE_MCB *PBASE_MCB;
typedef struct _LARGE_MCB
{
typedef struct _LARGE_MCB {
PFAST_MUTEX FastMutex;
BASE_MCB BaseMcb;
ULONG MaximumPairCount;
ULONG PairCount;
POOL_TYPE PoolType;
PVOID Mapping;
} LARGE_MCB;
typedef LARGE_MCB *PLARGE_MCB;