usbloadergx/source/usbloader/wbfs/wbfs_ext.h
dimok321 7bccfd2b17 *added loading screen
*Removed the console loading screen (no more console at all)
*Complete rework of device handle. You need to reset all your custom paths for this rev.
*Support for writing images/settings/... on any writable partition (FAT/NTFS/EXT). (Theoretically you can run the loader from NTFS only without the need of any other partition or SD if run from new forwarder channel, for example)
*Support for Primary/Logical partitions and GUID Partition Table (GPT)

Forwarder Channel in last revision was not using IOS58 (not sure about AHBPROT)
Here a corrected version (thx to Cyan):
http://www.mediafire.com/?a9y3ywqcm4v3lz3
2010-12-30 23:49:22 +00:00

20 lines
344 B
C++

#ifndef _WBFS_EXT_H
#define _WBFS_EXT_H
#include <ext2.h>
#include "wbfs_fat.h"
class Wbfs_Ext: public Wbfs_Fat
{
public:
Wbfs_Ext(u32 device, u32 lba, u32 size) :
Wbfs_Fat(device, lba, size)
{
}
virtual s32 Open();
bool ShowFreeSpace(void) { return true; };
};
#endif //_WBFS_NTFS_H