diff options
Diffstat (limited to 'dev/Kernel/FSKit')
| -rw-r--r-- | dev/Kernel/FSKit/NeFS.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/dev/Kernel/FSKit/NeFS.h b/dev/Kernel/FSKit/NeFS.h index ffd56d03..87633b76 100644 --- a/dev/Kernel/FSKit/NeFS.h +++ b/dev/Kernel/FSKit/NeFS.h @@ -99,7 +99,7 @@ default. #define kResourceTypeMenu (12) #define kResourceTypeSound (13) #define kResourceTypeFont (14) -#define kNeFSPartLen (32) +#define kNeFSPartLen (32) #define kNeFSFlagDeleted (70) #define kNeFSFlagUnallocated (0) @@ -206,7 +206,7 @@ struct PACKED NEFS_FORK_STRUCT final /// @brief Partition block type struct PACKED NEFS_ROOT_PARTITION_BLOCK final { - Kernel::Char Ident[kNeFSIdentLen] = {0}; + Kernel::Char Ident[kNeFSIdentLen] = {0}; Kernel::Char PartitionName[kNeFSPartLen] = {0}; Kernel::Int32 Flags; @@ -279,8 +279,8 @@ namespace Kernel /// @param name the fork name. /// @return the fork. _Output NEFS_FORK_STRUCT* FindFork(_Input NEFS_CATALOG_STRUCT* catalog, - _Input const Char* name, - Boolean data); + _Input const Char* name, + Boolean data); _Output Void RemoveFork(_Input NEFS_FORK_STRUCT* fork); @@ -291,8 +291,8 @@ namespace Kernel _Output NEFS_CATALOG_STRUCT* GetCatalog(_Input const Char* name); _Output NEFS_CATALOG_STRUCT* CreateCatalog(_Input const Char* name, - _Input const Int32& flags, - _Input const Int32& kind); + _Input const Int32& flags, + _Input const Int32& kind); _Output NEFS_CATALOG_STRUCT* CreateCatalog(_Input const Char* name); @@ -303,8 +303,8 @@ namespace Kernel _Input const Char* name); _Output VoidPtr ReadCatalog(_Input _Output NEFS_CATALOG_STRUCT* catalog, - _Input Bool isRsrcFork, - _Input SizeT dataSz, + _Input Bool isRsrcFork, + _Input SizeT dataSz, _Input const Char* forkName); _Output Bool Seek(_Input _Output NEFS_CATALOG_STRUCT* catalog, SizeT off); |
