mirror of
https://github.com/aaru-dps/Aaru.CommonTypes.git
synced 2025-12-16 19:24:30 +00:00
Add A2R flux format support
This commit is contained in:
@@ -115,4 +115,13 @@ public interface IFluxImage : IBaseImage
|
||||
/// <param name="captureIndex">Which capture to read. See also <see cref="CapturesLength" /></param>
|
||||
/// <param name="buffer">Buffer to store the data in</param>
|
||||
ErrorNumber ReadFluxDataCapture(uint head, ushort track, byte subTrack, uint captureIndex, out byte[] buffer);
|
||||
|
||||
/// <summary>
|
||||
/// An image may have tracks split into sub-steps. This returns the highest sub-step index for the track.
|
||||
/// </summary>
|
||||
/// <returns>Error number</returns>
|
||||
/// <param name="head">Physical head (0-based)</param>
|
||||
/// <param name="track">Physical track (position of the heads over the floppy media, 0-based)</param>
|
||||
/// <param name="length">The number of captures</param>
|
||||
ErrorNumber SubTrackLength(uint head, ushort track, out byte length);
|
||||
}
|
||||
Reference in New Issue
Block a user