diff options
Diffstat (limited to 'e2fsprogs/e2fs_lib.h')
-rw-r--r-- | e2fsprogs/e2fs_lib.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/e2fsprogs/e2fs_lib.h b/e2fsprogs/e2fs_lib.h index fd6948fc7..5ce206ad6 100644 --- a/e2fsprogs/e2fs_lib.h +++ b/e2fsprogs/e2fs_lib.h | |||
@@ -16,11 +16,16 @@ PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN | |||
16 | #define CHATTR_MASK (FILE_ATTRIBUTE_READONLY | FILE_ATTRIBUTE_HIDDEN | \ | 16 | #define CHATTR_MASK (FILE_ATTRIBUTE_READONLY | FILE_ATTRIBUTE_HIDDEN | \ |
17 | FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_ARCHIVE | \ | 17 | FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_ARCHIVE | \ |
18 | FILE_ATTRIBUTE_TEMPORARY | FILE_ATTRIBUTE_NOT_CONTENT_INDEXED) | 18 | FILE_ATTRIBUTE_TEMPORARY | FILE_ATTRIBUTE_NOT_CONTENT_INDEXED) |
19 | #endif | 19 | |
20 | /* Print file attributes on an NTFS file system */ | ||
21 | void print_e2flags_long(struct stat *sb); | ||
22 | void print_e2flags(struct stat *sb); | ||
23 | #else | ||
20 | 24 | ||
21 | /* Print file attributes on an ext2 file system */ | 25 | /* Print file attributes on an ext2 file system */ |
22 | void print_e2flags_long(unsigned flags); | 26 | void print_e2flags_long(unsigned flags); |
23 | void print_e2flags(unsigned flags); | 27 | void print_e2flags(unsigned flags); |
28 | #endif | ||
24 | 29 | ||
25 | extern const uint32_t e2attr_flags_value[]; | 30 | extern const uint32_t e2attr_flags_value[]; |
26 | extern const char e2attr_flags_sname[]; | 31 | extern const char e2attr_flags_sname[]; |