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 />
|
||||
public long Length { get; init; }
|
||||
/// <inheritdoc />
|
||||
public long Offset { get; init; }
|
||||
public long Offset { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -117,6 +117,6 @@ public sealed partial class AppleMFS
|
||||
/// <inheritdoc />
|
||||
public long Length { get; init; }
|
||||
/// <inheritdoc />
|
||||
public long Offset { get; init; }
|
||||
public long Offset { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -376,6 +376,6 @@ public sealed partial class CPM
|
||||
/// <inheritdoc />
|
||||
public long Length { get; init; }
|
||||
/// <inheritdoc />
|
||||
public long Offset { get; init; }
|
||||
public long Offset { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -992,7 +992,7 @@ public sealed partial class FAT
|
||||
/// <inheritdoc />
|
||||
public long Length { get; init; }
|
||||
/// <inheritdoc />
|
||||
public long Offset { get; init; }
|
||||
public long Offset { get; set; }
|
||||
|
||||
internal uint[] _clusters;
|
||||
}
|
||||
|
||||
@@ -71,6 +71,6 @@ public sealed partial class XboxFatPlugin
|
||||
/// <inheritdoc />
|
||||
public long Length { get; init; }
|
||||
/// <inheritdoc />
|
||||
public long Offset { get; init; }
|
||||
public long Offset { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -112,6 +112,6 @@ public sealed partial class ISO9660
|
||||
/// <inheritdoc />
|
||||
public long Length { get; init; }
|
||||
/// <inheritdoc />
|
||||
public long Offset { get; init; }
|
||||
public long Offset { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -406,7 +406,7 @@ public sealed partial class LisaFS
|
||||
/// <inheritdoc />
|
||||
public long Length { get; init; }
|
||||
/// <inheritdoc />
|
||||
public long Offset { get; init; }
|
||||
public long Offset { get; set; }
|
||||
|
||||
internal short _fileId;
|
||||
}
|
||||
|
||||
@@ -122,6 +122,6 @@ public sealed partial class OperaFS
|
||||
/// <inheritdoc />
|
||||
public long Length { get; init; }
|
||||
/// <inheritdoc />
|
||||
public long Offset { get; init; }
|
||||
public long Offset { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -85,6 +85,6 @@ public sealed partial class PascalPlugin
|
||||
/// <inheritdoc />
|
||||
public long Length { get; init; }
|
||||
/// <inheritdoc />
|
||||
public long Offset { get; init; }
|
||||
public long Offset { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user