fixing right define of struct typedef LARGE_MCB *PLARGE_MCB
authorMagnus Olsen <magnus@greatlord.com>
Tue, 9 May 2006 06:01:32 +0000 (06:01 +0000)
committerMagnus Olsen <magnus@greatlord.com>
Tue, 9 May 2006 06:01:32 +0000 (06:01 +0000)
svn path=/trunk/; revision=21863

reactos/include/ddk/ntifs.h

index 5fd31b0..8e8f89f 100644 (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;