[Aaru.Filesystems] Reformat and cleanup.

This commit is contained in:
2023-10-03 23:22:08 +01:00
parent 51f35c80d9
commit 7a608e0061
296 changed files with 21000 additions and 18286 deletions

View File

@@ -36,6 +36,8 @@ namespace Aaru.Filesystems;
/// <summary>Implements detection of the Professional File System</summary>
public sealed partial class PFS
{
#region Nested type: BootBlock
/// <summary>Boot block, first 2 sectors</summary>
[StructLayout(LayoutKind.Sequential, Pack = 1)]
readonly struct BootBlock
@@ -46,6 +48,10 @@ public sealed partial class PFS
public readonly byte[] bootCode;
}
#endregion
#region Nested type: RootBlock
[StructLayout(LayoutKind.Sequential, Pack = 1)]
readonly struct RootBlock
{
@@ -91,4 +97,6 @@ public sealed partial class PFS
/// <summary>Unused</summary>
public readonly uint unused;
}
#endregion
}