mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Add Seek method to IReadOnlyFilesystem.
This commit is contained in:
Submodule Aaru.CommonTypes updated: 685f2456a5...d580412b08
@@ -112,6 +112,6 @@ public sealed partial class AppleDOS
|
|||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public long Length { get; init; }
|
public long Length { get; init; }
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public long Offset { get; init; }
|
public long Offset { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -117,6 +117,6 @@ public sealed partial class AppleMFS
|
|||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public long Length { get; init; }
|
public long Length { get; init; }
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public long Offset { get; init; }
|
public long Offset { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -376,6 +376,6 @@ public sealed partial class CPM
|
|||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public long Length { get; init; }
|
public long Length { get; init; }
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public long Offset { get; init; }
|
public long Offset { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -992,7 +992,7 @@ public sealed partial class FAT
|
|||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public long Length { get; init; }
|
public long Length { get; init; }
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public long Offset { get; init; }
|
public long Offset { get; set; }
|
||||||
|
|
||||||
internal uint[] _clusters;
|
internal uint[] _clusters;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -71,6 +71,6 @@ public sealed partial class XboxFatPlugin
|
|||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public long Length { get; init; }
|
public long Length { get; init; }
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public long Offset { get; init; }
|
public long Offset { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -112,6 +112,6 @@ public sealed partial class ISO9660
|
|||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public long Length { get; init; }
|
public long Length { get; init; }
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public long Offset { get; init; }
|
public long Offset { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -406,7 +406,7 @@ public sealed partial class LisaFS
|
|||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public long Length { get; init; }
|
public long Length { get; init; }
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public long Offset { get; init; }
|
public long Offset { get; set; }
|
||||||
|
|
||||||
internal short _fileId;
|
internal short _fileId;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -122,6 +122,6 @@ public sealed partial class OperaFS
|
|||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public long Length { get; init; }
|
public long Length { get; init; }
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public long Offset { get; init; }
|
public long Offset { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -85,6 +85,6 @@ public sealed partial class PascalPlugin
|
|||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public long Length { get; init; }
|
public long Length { get; init; }
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public long Offset { get; init; }
|
public long Offset { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user