Add Seek method to IReadOnlyFilesystem.

This commit is contained in:
2022-12-19 00:38:54 +00:00
parent 7e0dc0a251
commit 0f1876ef64
10 changed files with 10 additions and 10 deletions

View File

@@ -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; }
}
}

View File

@@ -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; }
}
}

View File

@@ -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; }
}
}

View File

@@ -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;
}

View File

@@ -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; }
}
}

View File

@@ -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; }
}
}

View File

@@ -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;
}

View File

@@ -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; }
}
}

View File

@@ -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; }
}
}