Naming fixes.

This commit is contained in:
2020-07-20 21:11:32 +01:00
parent c58c0fd1f8
commit 6220425ac6
525 changed files with 15675 additions and 15524 deletions

View File

@@ -72,8 +72,8 @@ namespace Aaru.Filesystems
Encoding = Encoding.GetEncoding("shift_jis");
information = "";
byte[] sector = imagePlugin.ReadSectors(partition.Start, 2);
PcfxHeader header = Marshal.ByteArrayToStructureLittleEndian<PcfxHeader>(sector);
byte[] sector = imagePlugin.ReadSectors(partition.Start, 2);
Header header = Marshal.ByteArrayToStructureLittleEndian<Header>(sector);
string date;
DateTime dateTime = DateTime.MinValue;
@@ -127,7 +127,7 @@ namespace Aaru.Filesystems
}
[StructLayout(LayoutKind.Sequential, Pack = 1)]
struct PcfxHeader
struct Header
{
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 16)]
public readonly byte[] signature;