mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-10 13:35:07 +01:00
ce5930f297
* Updated to Hermes usb storage code * Fixed some bugs in ntfs while writing timestamps, resulting in different hashes (dimok) * Fixed codedump when switching partitions (issue 1454) * Fixed graphical glitch on 4:3 screens, where the prefetch cover was visible in the coverwall * Fixed a bug with installing games, due to the switch to C++ (dimok)
32 lines
593 B
C++
32 lines
593 B
C++
#ifndef _WBFS_WBFS_H
|
|
#define _WBFS_WBFS_H
|
|
|
|
#include "wbfs_base.h"
|
|
#include "libwbfs/libwbfs.h"
|
|
|
|
class Wbfs_Wbfs : public Wbfs
|
|
{
|
|
public:
|
|
Wbfs_Wbfs(u32 device, u32 lba, u32 size) : Wbfs(device, lba, size) {}
|
|
|
|
s32 Open();
|
|
wbfs_disc_t* OpenDisc(u8 *);
|
|
void CloseDisc(wbfs_disc_t *);
|
|
|
|
s32 Format();
|
|
s32 GetCount(u32 *);
|
|
s32 GetHeaders(struct discHdr *, u32, u32);
|
|
|
|
s32 AddGame();
|
|
s32 RemoveGame(u8 *);
|
|
|
|
s32 DiskSpace(f32 *, f32 *);
|
|
|
|
s32 RenameGame(u8 *, const void *);
|
|
s32 ReIDGame(u8 *, const void *);
|
|
|
|
f32 EstimateGameSize();
|
|
};
|
|
|
|
#endif //_WBFS_WBFS_H
|