diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2025-01-03 12:07:39 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2025-01-03 12:09:26 +0100 |
| commit | 4be14ab92ed6456e6d5bec5777fe7df5738112e7 (patch) | |
| tree | 097909d8326cdbe9498cf44aa3d03d36bafdd4c3 /dev/Kernel/FSKit/NeFS.h | |
| parent | cbfd279a1410e11d734edc99509a3e0c02dc6fcc (diff) | |
FIX: Fix implementation of the HFS traversal algorithm.
FIX: Fix SysChk, by removing unused handover header in code.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/Kernel/FSKit/NeFS.h')
| -rw-r--r-- | dev/Kernel/FSKit/NeFS.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/dev/Kernel/FSKit/NeFS.h b/dev/Kernel/FSKit/NeFS.h index c33ffaf7..2468fd16 100644 --- a/dev/Kernel/FSKit/NeFS.h +++ b/dev/Kernel/FSKit/NeFS.h @@ -133,7 +133,7 @@ enum enum { - kNeFSStatusUnlocked, + kNeFSStatusUnlocked = 0x18, kNeFSStatusLocked, kNeFSStatusError, kNeFSStatusInvalid, @@ -147,13 +147,19 @@ struct PACKED NFS_CATALOG_STRUCT final /// Catalog flags. Kernel::UInt16 Flags; + + /// Catalog allocation status. Kernel::UInt16 Status; + /// Custom catalog flags. - Kernel::UInt16 FilkMMFlags; + Kernel::UInt16 CatalogFlags; + /// Catalog kind. Kernel::Int32 Kind; + /// Size of the data fork. Kernel::Lba DataForkSize; + /// Size of all resource forks. Kernel::Lba ResourceForkSize; |
