[ros-diffs] [fireball] 33715: - Fix misc structures definitions.

fireball at svn.reactos.org fireball at svn.reactos.org
Mon May 26 20:08:51 CEST 2008


Author: fireball
Date: Mon May 26 13:08:50 2008
New Revision: 33715

URL: http://svn.reactos.org/svn/reactos?rev=33715&view=rev
Log:
- Fix misc structures definitions.

Modified:
    trunk/reactos/include/ddk/ntifs.h

Modified: trunk/reactos/include/ddk/ntifs.h
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/include/ddk/ntifs.h?rev=33715&r1=33714&r2=33715&view=diff
==============================================================================
--- trunk/reactos/include/ddk/ntifs.h [iso-8859-1] (original)
+++ trunk/reactos/include/ddk/ntifs.h [iso-8859-1] Mon May 26 13:08:50 2008
@@ -1819,9 +1819,15 @@
     SyncTypeCreateSection
 } FS_FILTER_SECTION_SYNC_TYPE, *PFS_FILTER_SECTION_SYNC_TYPE;
 
+typedef enum _FS_FILTER_STREAM_FO_NOTIFICATION_TYPE {
+    NotifyTypeCreate = 0,
+    NotifyTypeRetired
+} FS_FILTER_STREAM_FO_NOTIFICATION_TYPE, *PFS_FILTER_STREAM_FO_NOTIFICATION_TYPE;
+
 typedef union _FS_FILTER_PARAMETERS {
     struct {
         PLARGE_INTEGER  EndingOffset;
+        PERESOURCE *ResourceToRelease;
     } AcquireForModifiedPageWriter;
 
     struct {
@@ -1832,6 +1838,11 @@
         FS_FILTER_SECTION_SYNC_TYPE  SyncType;
         ULONG  PageProtection;
     } AcquireForSectionSynchronization;
+
+    struct {
+        FS_FILTER_STREAM_FO_NOTIFICATION_TYPE NotificationType;
+        BOOLEAN POINTER_ALIGNMENT SafeToRecurse;
+    } NotifyStreamFileObject;
 
     struct {
         PVOID  Argument1;
@@ -2278,7 +2289,7 @@
 
 typedef VOID (NTAPI *PFLUSH_TO_LSN) (
     IN PVOID            LogHandle,
-    IN PLARGE_INTEGER   Lsn
+    IN LARGE_INTEGER    Lsn
 );
 
 NTKERNELAPI



More information about the Ros-diffs mailing list