mirror of
https://github.com/MobileTooling/UnifiedFlashingPlatform.git
synced 2026-07-27 12:48:47 -07:00
17 lines
399 B
C#
17 lines
399 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Img2Ffu.Reader.Structs
|
|
{
|
|
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
|
public struct BlockDataEntry
|
|
{
|
|
public uint LocationCount;
|
|
public uint BlockCount;
|
|
|
|
public override readonly string ToString()
|
|
{
|
|
return $"{{LocationCount: {LocationCount}, BlockCount: {BlockCount}}}";
|
|
}
|
|
}
|
|
}
|