Fix declaration of FILE_DISPOSITION_INFORMATION.

svn path=/trunk/; revision=10581
This commit is contained in:
Filip Navara
2004-08-18 02:13:27 +00:00
parent 0e686e8470
commit bf2c0b0d8b
3 changed files with 5 additions and 5 deletions
+2 -2
View 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,
+2 -2
View 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,
+1 -1
View 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 {