https://git.reactos.org/?p=reactos.git;a=commitdiff;h=9be382ec9820a9aae2906…
commit 9be382ec9820a9aae29065c377ea819d7256e281
Author: Marat Nagayev <nagaevmt49(a)gmail.com>
AuthorDate: Wed Aug 4 09:01:42 2021 +0300
Commit: Victor Perevertkin <victor(a)perevertkin.ru>
CommitDate: Wed Aug 4 16:07:18 2021 +0300
[NTFS] Add new defines for file attributes
---
drivers/filesystems/ntfs/ntfs.h | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/drivers/filesystems/ntfs/ntfs.h b/drivers/filesystems/ntfs/ntfs.h
index 7707d52c2b8..38107a808a9 100644
--- a/drivers/filesystems/ntfs/ntfs.h
+++ b/drivers/filesystems/ntfs/ntfs.h
@@ -223,8 +223,12 @@ typedef enum
#define NTFS_FILE_TYPE_HIDDEN 0x2
#define NTFS_FILE_TYPE_SYSTEM 0x4
#define NTFS_FILE_TYPE_ARCHIVE 0x20
+#define NTFS_FILE_TYPE_TEMPORARY 0x100
+#define NTFS_FILE_TYPE_SPARSE 0x200
#define NTFS_FILE_TYPE_REPARSE 0x400
#define NTFS_FILE_TYPE_COMPRESSED 0x800
+#define NTFS_FILE_TYPE_OFFLINE 0x1000
+#define NTFS_FILE_TYPE_ENCRYPTED 0x4000
#define NTFS_FILE_TYPE_DIRECTORY 0x10000000
/* Indexed Flag in Resident attributes - still somewhat speculative */