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

12 lines
280 B
C#

using System.Runtime.InteropServices;
namespace Img2Ffu.Reader.Structs
{
[StructLayout(LayoutKind.Sequential, Pack = 1)]
public struct ValidationEntry
{
public uint dwSectorIndex;
public uint dwSectorOffset;
public uint dwByteCount;
}
}