From 4b0fb6faffa0120f88fbeff92abfc39b640187ed Mon Sep 17 00:00:00 2001 From: antona Date: Fri, 3 Feb 2006 09:03:09 +0000 Subject: [PATCH] Add VOLUME_CHDSK_UNDERWAY flag to volume flags (layout.h). Thanks to Szaka for the information. --- include/ntfs/layout.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/ntfs/layout.h b/include/ntfs/layout.h index c4e78752..43fed781 100644 --- a/include/ntfs/layout.h +++ b/include/ntfs/layout.h @@ -1986,6 +1986,7 @@ typedef enum { VOLUME_MOUNTED_ON_NT4 = const_cpu_to_le16(0x0008), VOLUME_DELETE_USN_UNDERWAY = const_cpu_to_le16(0x0010), VOLUME_REPAIR_OBJECT_ID = const_cpu_to_le16(0x0020), + VOLUME_CHKDSK_UNDERWAY = const_cpu_to_le16(0x4000), VOLUME_MODIFIED_BY_CHKDSK = const_cpu_to_le16(0x8000), VOLUME_FLAGS_MASK = const_cpu_to_le16(0x803f), } __attribute__((__packed__)) VOLUME_FLAGS;