usbloadergx/source/usbloader/wbfs.h

51 lines
1.2 KiB
C
Raw Normal View History

#ifndef _WBFS_H_
#define _WBFS_H_
#include "libs/libwbfs/libwbfs.h"
#include "usbloader/disc.h"
#ifdef __cplusplus
extern "C"
{
#endif
#define PART_FS_WBFS 0
#define PART_FS_FAT 1
#define PART_FS_NTFS 2
#define PART_FS_EXT 3
/* Macros */
#define WBFS_MIN_DEVICE 1
#define WBFS_MAX_DEVICE 2
/* Prototypes */
s32 WBFS_Init(u32 device);
s32 WBFS_Format(u32 lba, u32 size, u32 port);
s32 WBFS_GetCount(int part, u32 *count);
s32 WBFS_GetHeaders(int part, struct discHdr *, u32, u32);
s32 WBFS_CheckGame(u8 *gameid);
2010-09-24 02:48:03 +02:00
s32 WBFS_AddGame(void);
s32 WBFS_RemoveGame(u8 *gameid);
s32 WBFS_GameSize(u8 *gameid, f32 *size);
s32 WBFS_DiskSpace(f32 *used, f32 *free);
s32 WBFS_RenameGame(u8 *gameid, const void *newname);
2010-09-24 02:48:03 +02:00
s32 WBFS_ReIDGame(u8 *discid, const void *newID);
*Fixed display of partition size on WBFS partitions with a different wbfs sector size than 512bytes. *Made the ProgressWindow for game installation more accurate *Added displaying newly installed games (marked as new) on favorite list, so you don't have to change to full list when installing new games. (Thanks Cyan for the patch) *Lot's a small fixes *Added WDM Menu on game start. You can set it in the alternative DOL option (one new option there). The menu lists all DOLs on the disc and if a wdm file is provided in the WDM path (configurable in the settings) than the dol parameter and dol replacement name will be taken from the wdm. The DOLs that are not listed in the WDM but exist on the DISC will be listed at the end of the list. *Added avoid of multiple app cleanup when game fails to boot *Changed libfat to use FS info sector on FAT32 partitions. This speeds up the free space information getting to instant. For that the FS info sector has to have correct values. The values of all partitions where homebrews were writing to are currently incorrect because the official libfat does not support FS info sector (i submited a patch) (Windows does write it correct though). That is why there needs to be a synchronization of the FS info sector for partitions used with homebrews. For this purpose a new setting was added in the Loader Settings. You can synchronize all your FAT32 partitions on the USB with it once and you are done (if you don't write to that partition with current homebrews). After that you can enable free space display and it will be instant like on WBFS/NTFS/EXT partitions.
2011-01-16 14:12:07 +01:00
u64 WBFS_EstimeGameSize(void);
2010-09-24 02:48:03 +02:00
int WBFS_GetFragList(u8 *id);
s32 WBFS_OpenAll();
s32 WBFS_OpenPart(int part_num);
2010-09-24 02:48:03 +02:00
wbfs_disc_t* WBFS_OpenDisc(u8 *discid);
void WBFS_CloseDisc(wbfs_disc_t *disc);
bool WBFS_Close(int part);
void WBFS_CloseAll();
bool WBFS_Selected();
int MountWBFS(bool ShowGUI);
#ifdef __cplusplus
}
#endif
#endif