mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-08 12:35:08 +01:00
df76e45150
- This allows you to play your Wii games from an SD card - It currently only supports 1 partition - I've tested it with a 256GB Amazon Basics microSDXC card
51 lines
1.2 KiB
C
51 lines
1.2 KiB
C
#ifndef _FRAG_H_
|
|
#define _FRAG_H_
|
|
// 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;
|
|
|
|
void frag_init(FragList *ff, int maxnum);
|
|
void frag_dump(FragList *ff);
|
|
int frag_append(void *ff, u32 offset, u32 sector, u32 count);
|
|
int frag_concat(FragList *ff, FragList *src);
|
|
|
|
// in case a sparse block is requested,
|
|
// the returned poffset might not be equal to requested offset
|
|
// the difference should be filled with 0
|
|
int frag_get(FragList *ff, u32 offset, u32 count, u32 *poffset, u32 *psector, u32 *pcount);
|
|
|
|
int frag_remap(FragList *ff, FragList *log, FragList *phy);
|
|
|
|
int get_frag_list_for_file(char *fname, u8 *id, const u8 wbfs_part_fs, const u32 lba_offset, const u32 sector_size);
|
|
int get_frag_list(u8 *id);
|
|
int set_frag_list(u8 *id, bool sd_only);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|