/*
* SSEQ Player - SDAT FAT (File Allocation Table) Section structures
* By Naram Qashat (CyberBotX) [cyberbotx@cyberbotx.com]
*
* Nintendo DS Nitro Composer (SDAT) Specification document found at
* http://www.feshrine.net/hacking/doc/nds-sdat.html
*/
#pragma once
#include <vector>
#include <cstdint>
struct PseudoFile;
struct FATRecord
{
std::uint32_t offset;
FATRecord();
void Read(PseudoFile &file);
};
struct FATSection
{
std::vector<FATRecord> records;
FATSection();
void Read(PseudoFile &file);
};