Fix declaration of FILE_DISPOSITION_INFORMATION.
authorFilip Navara <filip.navara@gmail.com>
Wed, 18 Aug 2004 02:13:27 +0000 (02:13 +0000)
committerFilip Navara <filip.navara@gmail.com>
Wed, 18 Aug 2004 02:13:27 +0000 (02:13 +0000)
svn path=/trunk/; revision=10581

reactos/lib/kernel32/file/delete.c
reactos/lib/kernel32/file/dir.c
reactos/w32api/include/ddk/winddk.h

index 1a0ee67..d8e6bf3 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: delete.c,v 1.16 2004/01/23 21:16:03 ekohl Exp $
+/* $Id: delete.c,v 1.17 2004/08/18 02:13:27 navaraf Exp $
  *
  * COPYRIGHT:       See COPYING in the top level directory
  * PROJECT:         ReactOS system libraries
@@ -109,7 +109,7 @@ DeleteFileW (
                return FALSE;
        }
 
-       FileDispInfo.DoDeleteFile = TRUE;
+       FileDispInfo.DeleteFile = TRUE;
 
        Status = NtSetInformationFile (FileHandle,
                                       &IoStatusBlock,
index 9f18ffb..6494310 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: dir.c,v 1.47 2004/07/01 22:35:35 gvg Exp $
+/* $Id: dir.c,v 1.48 2004/08/18 02:13:27 navaraf Exp $
  *
  * COPYRIGHT:       See COPYING in the top level directory
  * PROJECT:         ReactOS system libraries
@@ -297,7 +297,7 @@ RemoveDirectoryW (
                 return FALSE;
         }
 
-        FileDispInfo.DoDeleteFile = TRUE;
+        FileDispInfo.DeleteFile = TRUE;
 
         Status = NtSetInformationFile (DirectoryHandle,
                                        &IoStatusBlock,
index ca74aa2..90a55f8 100644 (file)
@@ -2002,7 +2002,7 @@ typedef struct _FILE_ATTRIBUTE_TAG_INFORMATION {
 } FILE_ATTRIBUTE_TAG_INFORMATION, *PFILE_ATTRIBUTE_TAG_INFORMATION;
 
 typedef struct _FILE_DISPOSITION_INFORMATION {                  
-  BOOLEAN  DoDeleteFile;                                         
+  BOOLEAN  DeleteFile;                                         
 } FILE_DISPOSITION_INFORMATION, *PFILE_DISPOSITION_INFORMATION; 
                                                                 
 typedef struct _FILE_END_OF_FILE_INFORMATION {