[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

@@ -28,8 +28,8 @@
using System.Diagnostics.CodeAnalysis;
using System.Runtime.InteropServices;
using time_t = System.Int32;
using ufs_daddr_t = System.Int32;
using time_t = int;
using ufs_daddr_t = int;
namespace Aaru.Filesystems;
@@ -39,6 +39,8 @@ namespace Aaru.Filesystems;
[SuppressMessage("ReSharper", "InconsistentNaming")]
public sealed partial class FFSPlugin
{
#region Nested type: csum
[StructLayout(LayoutKind.Sequential, Pack = 1)]
struct csum
{
@@ -52,6 +54,10 @@ public sealed partial class FFSPlugin
public int cs_nffree;
}
#endregion
#region Nested type: csum_total
[StructLayout(LayoutKind.Sequential, Pack = 1)]
struct csum_total
{
@@ -70,6 +76,10 @@ public sealed partial class FFSPlugin
public readonly long[] cs_spare;
}
#endregion
#region Nested type: SuperBlock
[StructLayout(LayoutKind.Sequential, Pack = 1)]
struct SuperBlock
{
@@ -289,4 +299,6 @@ public sealed partial class FFSPlugin
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 1)]
public readonly byte[] fs_rotbl;
}
#endregion
}