mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Added suppor for resume mapfile.
This commit is contained in:
@@ -61,6 +61,16 @@ namespace DiscImageChef.Core
|
||||
return dataFs.Read(array, offset, count);
|
||||
}
|
||||
|
||||
public long Seek(ulong block, ulong blockSize)
|
||||
{
|
||||
return dataFs.Seek((long)(block * blockSize), SeekOrigin.Begin);
|
||||
}
|
||||
|
||||
public long Seek(ulong offset, SeekOrigin origin)
|
||||
{
|
||||
return dataFs.Seek((long)offset, origin);
|
||||
}
|
||||
|
||||
public long Seek(long offset, SeekOrigin origin)
|
||||
{
|
||||
return dataFs.Seek(offset, origin);
|
||||
|
||||
Reference in New Issue
Block a user