[ros-diffs] [arty] 44237: We don't use this ERESOURCE yet, but it'll be used to synchronize access to the filelocks.

arty at svn.reactos.org arty at svn.reactos.org
Fri Nov 20 16:22:05 CET 2009


Author: arty
Date: Fri Nov 20 16:22:05 2009
New Revision: 44237

URL: http://svn.reactos.org/svn/reactos?rev=44237&view=rev
Log:
We don't use this ERESOURCE yet, but it'll be used to synchronize access to the filelocks.

Modified:
    branches/arty-newcc/include/ddk/ntifs.h

Modified: branches/arty-newcc/include/ddk/ntifs.h
URL: http://svn.reactos.org/svn/reactos/branches/arty-newcc/include/ddk/ntifs.h?rev=44237&r1=44236&r2=44237&view=diff
==============================================================================
--- branches/arty-newcc/include/ddk/ntifs.h [iso-8859-1] (original)
+++ branches/arty-newcc/include/ddk/ntifs.h [iso-8859-1] Fri Nov 20 16:22:05 2009
@@ -1273,16 +1273,14 @@
 
 /* raw internal file lock struct returned from FsRtlGetNextFileLock */
 typedef struct _FILE_SHARED_LOCK_ENTRY {
-    PVOID           Unknown1;
-    PVOID           Unknown2;
+	ERESOURCE       Resource;
     FILE_LOCK_INFO  FileLock;
 } FILE_SHARED_LOCK_ENTRY, *PFILE_SHARED_LOCK_ENTRY;
 
 /* raw internal file lock struct returned from FsRtlGetNextFileLock */
 typedef struct _FILE_EXCLUSIVE_LOCK_ENTRY {
     LIST_ENTRY      ListEntry;
-    PVOID           Unknown1;
-    PVOID           Unknown2;
+	ERESOURCE       Resource;
     FILE_LOCK_INFO  FileLock;
 } FILE_EXCLUSIVE_LOCK_ENTRY, *PFILE_EXCLUSIVE_LOCK_ENTRY;
 




More information about the Ros-diffs mailing list