Add interface for writing sector tags that are not included in a long sector.

This commit is contained in:
2018-01-01 22:19:31 +00:00
parent aa493b53e5
commit f407774c7c
17 changed files with 403 additions and 10 deletions

View File

@@ -646,6 +646,18 @@ namespace DiscImageChef.DiscImages
return true;
}
public bool WriteSectorTag(byte[] data, ulong sectorAddress, SectorTagType tag)
{
ErrorMessage = "Unsupported feature";
return false;
}
public bool WriteSectorsTag(byte[] data, ulong sectorAddress, uint length, SectorTagType tag)
{
ErrorMessage = "Unsupported feature";
return false;
}
[SuppressMessage("ReSharper", "InconsistentNaming")]
enum DiskType : byte
{