Emotional/BIOS/iop/romdir.h
2024-01-28 19:56:54 -05:00

20 lines
401 B
C

#pragma once
#include <stddef.h>
typedef struct
{
void* searchBegin; // The beginning of the search range (TODO: why does the BIOS save this?)
void* firstEntry;
size_t romDirSize;
} RomDir;
typedef struct
{
char* name;
void* filePtr;
void* extInfo;
} RomDirEnt;
RomDir* SearchForRomDir(void* start, void* end, RomDir* out);
RomDirEnt* FindRomDirEnt(RomDir* dir, char* name, RomDirEnt* out);