2024-09-07 23:12:17 +02:00
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
}
|