mirror of
https://github.com/MobileTooling/Ffu2Vhdx.git
synced 2026-07-27 12:48:20 -07:00
16 lines
405 B
C#
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}}}";
|
|
}
|
|
}
|
|
} |