WiiFlow_Lite/resources/wiiflow_game_booter/source/frag.h
fix94.1 8cc82998ac -experiment tinyload failed, back to my libogc booter
(however, I'll keep using that awesome loading bar of it lol)
-fixed this strange click sound on game boot
2012-10-14 17:18:13 +00:00

32 lines
549 B
C

// worst case wbfs fragmentation scenario:
// 9GB (dual layer) / 2mb (wbfs sector size) = 4608
#define MAX_FRAG 20000
// max that ehcmodule_frag will allow at the moment is about:
// 40000/4/3-1 = 21844
#ifdef __cplusplus
extern "C" {
#endif
#include "gctypes.h"
typedef struct
{
u32 offset; // file offset, in sectors unit
u32 sector;
u32 count;
} Fragment;
typedef struct
{
u32 size; // num sectors
u32 num; // num fragments
u32 maxnum;
Fragment frag[MAX_FRAG];
} FragList;
#ifdef __cplusplus
}
#endif