From fdeef97886b698ce547fd52155250a533b75b8a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20=C3=85strand?= Date: Fri, 16 Apr 2004 11:10:12 +0000 Subject: [PATCH] The enum FILE_INFORMATION_CLASS was a bit wrong, it seems. Using the definition from http://win32.mvps.org/ntfs/streams.cpp instead. git-svn-id: svn://svn.code.sf.net/p/rdesktop/code/trunk/rdesktop@655 423420c4-83ab-492f-b58f-81f9feb106b5 --- disk.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/disk.h b/disk.h index 7dfccb8..6f12e29 100644 --- a/disk.h +++ b/disk.h @@ -111,18 +111,18 @@ typedef enum _FILE_INFORMATION_CLASS FileMailslotQueryInformation, FileMailslotSetInformation, FileCompressionInformation, - FileObjectIdInformation, + FileCopyOnWriteInformation, FileCompletionInformation, FileMoveClusterInformation, - FileQuotaInformation, - FileReparsePointInformation, + FileOleClassIdInformation, + FileOleStateBitsInformation, FileNetworkOpenInformation, - FileAttributeTagInformation, - FileTrackingInformation, - FileIdBothDirectoryInformation, - FileIdFullDirectoryInformation, - FileValidDataLengthInformation, - FileShortNameInformation, + FileObjectIdInformation, + FileOleAllInformation, + FileOleDirectoryInformation, + FileContentIndexInformation, + FileInheritContentIndexInformation, + FileOleInformation, FileMaximumInformation } FILE_INFORMATION_CLASS, *PFILE_INFORMATION_CLASS;