Files
Ffu2Vhdx/Img2Ffu.Library/Reader/Structs/DiskLocation.cs
T
2024-09-09 19:49:55 +02:00

16 lines
405 B
C#

using System.Runtime.InteropServices;
namespace Img2Ffu.Reader.Structs
{
[StructLayout(LayoutKind.Sequential, Pack = 1)]
public struct DiskLocation
{
public uint DiskAccessMethod;
public uint BlockIndex;
public override readonly string ToString()
{
return $"{{DiskAccessMethod: {DiskAccessMethod}, BlockIndex: {BlockIndex}}}";
}
}
}