1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 02:57:42 +00:00

FileSystem/FATFS: Convert internal FAT inode attributes to dirent types

This commit is contained in:
Taj Morton 2023-07-08 23:00:54 -07:00 committed by Andrew Kaster
parent a961447dbd
commit 1d2f1abf97
2 changed files with 15 additions and 0 deletions

View file

@ -26,6 +26,7 @@ public:
virtual ~FATFS() override = default;
virtual StringView class_name() const override { return "FATFS"sv; }
virtual Inode& root_inode() override;
virtual u8 internal_file_type_to_directory_entry_type(DirectoryEntryView const& entry) const override;
private:
virtual ErrorOr<void> initialize_while_locked() override;