[ros-diffs] [tkreuzer] 38080: Patch by encoded: update SHARED_CACHE_MAP

tkreuzer at svn.reactos.org tkreuzer at svn.reactos.org
Sun Dec 14 18:59:12 CET 2008


Author: tkreuzer
Date: Sun Dec 14 11:59:11 2008
New Revision: 38080

URL: http://svn.reactos.org/svn/reactos?rev=38080&view=rev
Log:
Patch by encoded: update SHARED_CACHE_MAP

Modified:
    branches/ros-amd64-bringup/reactos/include/ndk/cctypes.h

Modified: branches/ros-amd64-bringup/reactos/include/ndk/cctypes.h
URL: http://svn.reactos.org/svn/reactos/branches/ros-amd64-bringup/reactos/include/ndk/cctypes.h?rev=38080&r1=38079&r2=38080&view=diff
==============================================================================
--- branches/ros-amd64-bringup/reactos/include/ndk/cctypes.h [iso-8859-1] (original)
+++ branches/ros-amd64-bringup/reactos/include/ndk/cctypes.h [iso-8859-1] Sun Dec 14 11:59:11 2008
@@ -98,7 +98,11 @@
     LARGE_INTEGER ValidDataGoal;
     PVACB InitialVacbs[4];
     PVACB *Vacbs;
-    PFILE_OBJECT FileObject;
+#if (NTDDI_VERSION >= NTDDI_LONGHORN)
+    EX_FAST_REF FileObjectFastRef;
+#else
+	PFILE_OBJECT FileObject;
+#endif
     PVACB ActiveVacb;
     PVOID NeedToZero;
     ULONG ActivePage;
@@ -127,9 +131,19 @@
     ULONG BcbSpinLock;
     PVOID Reserved;
     KEVENT Event;
-    EX_PUSH_LOCK VacbPushLock;
+#if (NTDDI_VERSION >= NTDDI_LONGHORN) //guess
+    LARGE_INTEGER HighWaterMappingOffset;
+#else
+     EX_PUSH_LOCK VacbPushLock;
+#endif
     PRIVATE_CACHE_MAP PrivateCacheMap;
-} SHARED_CACHE_MAP;
+#if (NTDDI_VERSION >= NTDDI_LONGHORN)
+    PVOID WriteBehindWorkQueueEntry;
+    PVOLUME_CACHE_MAP VolumeCacheMap;
+    ULONG ProcImagePathHash;
+    ULONG MappedWritesInProgress;
+#endif
+} SHARED_CACHE_MAP, *PSHARED_CACHE_MAP;
 
 #endif /* _NTIFS_INCLUDED_  */
 #endif /* NTOS_MODE_USER    */



More information about the Ros-diffs mailing list