Update ReadSector and ReadSectors methods to include sector status output

This commit is contained in:
2025-10-22 14:28:58 +01:00
parent 1003088cc3
commit 0ac2a48fb6
238 changed files with 5881 additions and 5196 deletions

View File

@@ -69,7 +69,7 @@ public sealed class DragonFlyBSD : IPartition
if(sectorOffset + nSectors >= imagePlugin.Info.Sectors) return false;
ErrorNumber errno = imagePlugin.ReadSectors(sectorOffset, nSectors, out byte[] sectors);
ErrorNumber errno = imagePlugin.ReadSectors(sectorOffset, nSectors, out byte[] sectors, out _);
if(errno != ErrorNumber.NoError || sectors.Length < 2048) return false;