mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 11:48:10 +00:00
Kernel: Split the Ext2FileSystem.{cpp,h} files into smaller components
This commit is contained in:
parent
1c91881a1d
commit
3cc0d60141
15 changed files with 845 additions and 802 deletions
23
Kernel/FileSystem/Ext2FS/DirectoryEntry.h
Normal file
23
Kernel/FileSystem/Ext2FS/DirectoryEntry.h
Normal file
|
@ -0,0 +1,23 @@
|
|||
/*
|
||||
* Copyright (c) 2022, Liav A. <liavalb@hotmail.co.il>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <AK/OwnPtr.h>
|
||||
#include <AK/Types.h>
|
||||
#include <Kernel/FileSystem/Inode.h>
|
||||
#include <Kernel/KString.h>
|
||||
|
||||
namespace Kernel {
|
||||
|
||||
struct Ext2FSDirectoryEntry {
|
||||
NonnullOwnPtr<KString> name;
|
||||
InodeIndex inode_index { 0 };
|
||||
u8 file_type { 0 };
|
||||
u16 record_length { 0 };
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue