mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-09-24 07:37:10 +00:00
23 lines
524 B
C#
23 lines
524 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace SabreTools.Models.N3DS
|
|
{
|
|
/// <summary>
|
|
/// Offset and Length partition table, in media units
|
|
/// </summary>
|
|
/// <see href="https://www.3dbrew.org/wiki/NCSD#NCSD_header"/>
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public sealed class PartitionTableEntry
|
|
{
|
|
/// <summary>
|
|
/// Offset
|
|
/// </summary>
|
|
public uint Offset;
|
|
|
|
/// <summary>
|
|
/// Length
|
|
/// </summary>
|
|
public uint Length;
|
|
}
|
|
}
|