From 7d1c053177ff178d86a17f3b19f92cf308bd0d2e Mon Sep 17 00:00:00 2001 From: Amlal Date: Fri, 2 May 2025 16:11:51 +0200 Subject: kernel, FS: Mostly patches regarding NeFS's formating and disk write implementation. Signed-off-by: Amlal --- dev/kernel/FSKit/HeFS.h | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) (limited to 'dev/kernel/FSKit') diff --git a/dev/kernel/FSKit/HeFS.h b/dev/kernel/FSKit/HeFS.h index 50b8e259..8723cd86 100644 --- a/dev/kernel/FSKit/HeFS.h +++ b/dev/kernel/FSKit/HeFS.h @@ -358,21 +358,20 @@ class HeFileSystemParser final { /// @return If it was sucessful, see err_local_get(). _Output Bool Format(_Input _Output DriveTrait* drive, _Input const Int32 flags, const Utf8Char* part_name); - + _Output Bool CreateDirectory(_Input DriveTrait* drive, _Input const Int32 flags, - const Utf8Char* dir, const Utf8Char* parent_dir); + const Utf8Char* dir, const Utf8Char* parent_dir); - _Output Bool RemoveDirectory(_Input DriveTrait* drive, _Input const Int32 flags, - const Utf8Char* dir, const Utf8Char* parent_dir); + const Utf8Char* dir, const Utf8Char* parent_dir); - _Output Bool CreateFile(_Input DriveTrait* drive, _Input const Int32 flags, const Utf8Char* dir, const Utf8Char* namespase, - const Utf8Char* name); + _Output Bool CreateFile(_Input DriveTrait* drive, _Input const Int32 flags, const Utf8Char* dir, + const Utf8Char* namespase, const Utf8Char* name); private: - - _Output Bool DirectoryCtl_(_Input DriveTrait* drive, _Input const Int32 flags, - const Utf8Char* dir, const Utf8Char* parent, const BOOL delete_or_create); + _Output Bool DirectoryCtl_(_Input DriveTrait* drive, _Input const Int32 flags, + const Utf8Char* dir, const Utf8Char* parent, + const BOOL delete_or_create); UInt32 mDriveIndex{MountpointInterface::kDriveIndexA}; /// @brief The drive index which this /// filesystem is mounted on. -- cgit v1.2.3