usbloadergx/source/usbloader/wbfs/wbfs_ext.h
dimok321 7f2778e17f *Set settings partition to 0 if usb port is changed and settings partition is greater than the total partition count on that usb port.
*Some source optimizations
*Increased warning output with -Wextra and fixed the compile warnings
2011-02-06 18:36:32 +00:00

17 lines
301 B
C++

#ifndef _WBFS_EXT_H
#define _WBFS_EXT_H
#include "wbfs_fat.h"
class Wbfs_Ext: public Wbfs_Fat
{
public:
Wbfs_Ext(u32 lba, u32 size, u32 part) :
Wbfs_Fat(lba, size, part)
{
}
virtual u8 GetFSType(void) { return PART_FS_EXT; }
};
#endif //_WBFS_NTFS_H