mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
REFACTOR: Unnecessary whitespace removal.
This commit is contained in:
@@ -86,7 +86,7 @@ namespace DiscImageChef.Filesystems.CPM
|
||||
byte[] labelUpdateDate;
|
||||
|
||||
/// <summary>
|
||||
/// Cached <see cref="FileSystemInfo"/>
|
||||
/// Cached <see cref="FileSystemInfo"/>
|
||||
/// </summary>
|
||||
FileSystemInfo cpmStat;
|
||||
/// <summary>
|
||||
@@ -98,7 +98,7 @@ namespace DiscImageChef.Filesystems.CPM
|
||||
/// </summary>
|
||||
Dictionary<string, byte[]> fileCache;
|
||||
/// <summary>
|
||||
/// Cached file <see cref="FileEntryInfo"/>
|
||||
/// Cached file <see cref="FileEntryInfo"/>
|
||||
/// </summary>
|
||||
Dictionary<string, FileEntryInfo> statCache;
|
||||
/// <summary>
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
//
|
||||
// --[ Description ] ----------------------------------------------------------
|
||||
//
|
||||
// Handles definitions of known CP/M disks.
|
||||
// Handles definitions of known CP/M disks.
|
||||
//
|
||||
// --[ License ] --------------------------------------------------------------
|
||||
//
|
||||
@@ -154,7 +154,7 @@ namespace DiscImageChef.Filesystems.CPM
|
||||
/// </summary>
|
||||
public int bsh;
|
||||
/// <summary>
|
||||
/// Block mask for <see cref="bsh"/>
|
||||
/// Block mask for <see cref="bsh"/>
|
||||
/// </summary>
|
||||
public int blm;
|
||||
/// <summary>
|
||||
|
||||
@@ -202,43 +202,43 @@ namespace DiscImageChef.Filesystems.CPM
|
||||
/// </summary>
|
||||
public byte recordsPerSector;
|
||||
/// <summary>
|
||||
/// <see cref="DiscParameterBlock.spt"/>
|
||||
/// <see cref="DiscParameterBlock.spt"/>
|
||||
/// </summary>
|
||||
public ushort spt;
|
||||
/// <summary>
|
||||
/// <see cref="DiscParameterBlock.bsh"/>
|
||||
/// <see cref="DiscParameterBlock.bsh"/>
|
||||
/// </summary>
|
||||
public byte bsh;
|
||||
/// <summary>
|
||||
/// <see cref="DiscParameterBlock.blm"/>
|
||||
/// <see cref="DiscParameterBlock.blm"/>
|
||||
/// </summary>
|
||||
public byte blm;
|
||||
/// <summary>
|
||||
/// <see cref="DiscParameterBlock.exm"/>
|
||||
/// <see cref="DiscParameterBlock.exm"/>
|
||||
/// </summary>
|
||||
public byte exm;
|
||||
/// <summary>
|
||||
/// <see cref="DiscParameterBlock.dsm"/>
|
||||
/// <see cref="DiscParameterBlock.dsm"/>
|
||||
/// </summary>
|
||||
public ushort dsm;
|
||||
/// <summary>
|
||||
/// <see cref="DiscParameterBlock.drm"/>
|
||||
/// <see cref="DiscParameterBlock.drm"/>
|
||||
/// </summary>
|
||||
public ushort drm;
|
||||
/// <summary>
|
||||
/// <see cref="DiscParameterBlock.al0"/>
|
||||
/// <see cref="DiscParameterBlock.al0"/>
|
||||
/// </summary>
|
||||
public ushort al0;
|
||||
/// <summary>
|
||||
/// <see cref="DiscParameterBlock.al1"/>
|
||||
/// <see cref="DiscParameterBlock.al1"/>
|
||||
/// </summary>
|
||||
public ushort al1;
|
||||
/// <summary>
|
||||
/// <see cref="DiscParameterBlock.cks"/>
|
||||
/// <see cref="DiscParameterBlock.cks"/>
|
||||
/// </summary>
|
||||
public ushort cks;
|
||||
/// <summary>
|
||||
/// <see cref="DiscParameterBlock.off"/>
|
||||
/// <see cref="DiscParameterBlock.off"/>
|
||||
/// </summary>
|
||||
public ushort off;
|
||||
/// <summary>
|
||||
@@ -302,7 +302,7 @@ namespace DiscImageChef.Filesystems.CPM
|
||||
/// </summary>
|
||||
public ushort reserved;
|
||||
/// <summary>
|
||||
/// Password XOR'ed with <see cref="passwordDecoder"/>
|
||||
/// Password XOR'ed with <see cref="passwordDecoder"/>
|
||||
/// </summary>
|
||||
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 8)] public byte[] password;
|
||||
/// <summary>
|
||||
@@ -395,7 +395,7 @@ namespace DiscImageChef.Filesystems.CPM
|
||||
public byte passwordDecoder;
|
||||
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 2)] public byte[] reserved;
|
||||
/// <summary>
|
||||
/// Password XOR'ed with <see cref="passwordDecoder"/>
|
||||
/// Password XOR'ed with <see cref="passwordDecoder"/>
|
||||
/// </summary>
|
||||
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 8)] public byte[] password;
|
||||
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 8)] public byte[] reserved2;
|
||||
@@ -451,7 +451,7 @@ namespace DiscImageChef.Filesystems.CPM
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Directory entry for <256 allocation blocks
|
||||
/// Directory entry for <256 allocation blocks
|
||||
/// </summary>
|
||||
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
||||
struct DirectoryEntry
|
||||
@@ -492,7 +492,7 @@ namespace DiscImageChef.Filesystems.CPM
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Directory entry for &bt;256 allocation blocks
|
||||
/// Directory entry for &bt;256 allocation blocks
|
||||
/// </summary>
|
||||
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
||||
struct DirectoryEntry16
|
||||
|
||||
Reference in New Issue
Block a user