mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-02-14 13:46:14 +00:00
23 lines
652 B
C#
23 lines
652 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace SabreTools.Models.Nitro
|
|
{
|
|
/// <summary>
|
|
/// The structure of the file allocation table is very simple,
|
|
/// it's just a table of 8 byte entries
|
|
/// </summary>
|
|
/// <see href="https://github.com/Deijin27/RanseiLink/wiki/NDS-File-System"/>
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public sealed class FileAllocationTableEntry
|
|
{
|
|
/// <summary>
|
|
/// Start offset of file
|
|
/// </summary>
|
|
public uint StartOffset;
|
|
|
|
/// <summary>
|
|
/// End offset of file (after this is padding)
|
|
/// </summary>
|
|
public uint EndOffset;
|
|
}
|
|
} |