Author: greatlrd
Date: Tue May 9 10:01:32 2006
New Revision: 21863
URL:
http://svn.reactos.ru/svn/reactos?rev=21863&view=rev
Log:
fixing right define of struct typedef LARGE_MCB *PLARGE_MCB
Modified:
trunk/reactos/include/ddk/ntifs.h
Modified: trunk/reactos/include/ddk/ntifs.h
URL:
http://svn.reactos.ru/svn/reactos/trunk/reactos/include/ddk/ntifs.h?rev=218…
==============================================================================
--- trunk/reactos/include/ddk/ntifs.h (original)
+++ trunk/reactos/include/ddk/ntifs.h Tue May 9 10:01:32 2006
@@ -1230,10 +1230,12 @@
} 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;