Refactor, pass whole partition structure to filesystems.

This commit is contained in:
2017-07-19 16:31:08 +01:00
parent 68537136d8
commit 711d19fd04
154 changed files with 980 additions and 760 deletions

View File

@@ -53,6 +53,8 @@ namespace DiscImageChef.CommonTypes
public ulong PartitionSectors;
/// <summary>Information that does not find space in this struct</summary>
public string PartitionDescription;
/// <summary>LBA of last partition sector</summary>
public ulong PartitionEndSector { get { return PartitionStartSector + PartitionSectors - 1; }}
}
}