mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-05 02:55:07 +01:00
e8f5ab07bd
* Fixed bug in http.c (where realloc *might* choose another address, thanks Dr. Clipper) * Added support to /wbfs/Game Title [GAMEID].wbfs files (thanks oggzee) * Fixed bug in cfg_cleanup when switching partitions * Added BGM class again (for playing background music, requested by dimok) * Added settings for background music again * Fixed bug in MEM2 class (returning an invalid handle when no memory could be allocated, thanks to dimok) * Updated DIP module to OpenDIP (report bugs with this one if you've found them, but report them here: http://github.com/spacemanspiff/odip-plugin) * Added initial code for cios 222 rev5 (THIS DOES NOT WORK YET! DON'T FILE BUGS ON THIS ONE!) * Added fatffs module by Hermes and Waninkoko (THIS DOES NOT WORK YET! DON'T FILE BUGS ON THIS ONE!) * Fixed bug in Settings, which resulted in a crash when the partition was changed. * Added caching for gamelist entries, so switching between different screens/sort options/display modes should be faster * Changed defines in ehc_module, in order to prevent clashes with new defines in rev5
82 lines
1.6 KiB
C
82 lines
1.6 KiB
C
#ifndef _PARTITION_H_
|
|
#define _PARTITION_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* 'partition entry' structure */
|
|
typedef struct {
|
|
/* Boot indicator */
|
|
u8 boot;
|
|
|
|
/* Starting CHS */
|
|
u8 start[3];
|
|
|
|
/* Partition type */
|
|
u8 type;
|
|
|
|
/* Ending CHS */
|
|
u8 end[3];
|
|
|
|
/* Partition sector */
|
|
u32 sector;
|
|
|
|
/* Partition size */
|
|
u32 size;
|
|
} ATTRIBUTE_PACKED partitionEntry;
|
|
|
|
/* Constants */
|
|
#define MAX_PARTITIONS 4
|
|
#define MAX_PARTITIONS_EX 10
|
|
|
|
#define FS_TYPE_UNK 0
|
|
#define FS_TYPE_FAT16 1
|
|
#define FS_TYPE_FAT32 2
|
|
#define FS_TYPE_NTFS 3
|
|
#define FS_TYPE_WBFS 4
|
|
|
|
typedef struct
|
|
{
|
|
u8 fs_type;
|
|
u8 part_fs;
|
|
u8 wbfs_i; // seq wbfs part index
|
|
u8 fat_i; // seq fat part index
|
|
u8 ntfs_i; // seq ntfs part index
|
|
u8 index;
|
|
} PartInfo;
|
|
|
|
typedef struct
|
|
{
|
|
u8 num;
|
|
u32 sector_size;
|
|
partitionEntry pentry[MAX_PARTITIONS_EX];
|
|
u8 wbfs_n;
|
|
u8 fat_n;
|
|
u8 ntfs_n;
|
|
PartInfo pinfo[MAX_PARTITIONS_EX];
|
|
} PartList;
|
|
|
|
/* Prototypes */
|
|
s32 Partition_GetEntries(u32 device, partitionEntry *outbuf, u32 *outval);
|
|
s32 Partition_GetEntriesEx(u32 device, partitionEntry *outbuf, u32 *outval, u8 *num);
|
|
bool Device_ReadSectors(u32 device, u32 sector, u32 count, void *buffer);
|
|
bool Device_WriteSectors(u32 device, u32 sector, u32 count, void *buffer);
|
|
s32 Partition_GetList(u32 device, PartList *plist);
|
|
int Partition_FixEXT(u32 device, u8 part);
|
|
|
|
bool part_is_extended(int type);
|
|
bool part_is_data(int type);
|
|
char* part_type_data(int type);
|
|
char* part_type_name(int type);
|
|
bool part_valid_data(partitionEntry *entry);
|
|
int get_fs_type(void *buf);
|
|
bool is_type_fat(int type);
|
|
char* get_fs_name(int i);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|