usbloadergx/source/usbloader/wbfs/wbfs_ext.h
dimok321 973d8b2005 *Fixed compile error
*Converted every 4 spaces to a tab to make the source consistent on those
2011-07-25 22:28:22 +00:00

17 lines
281 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, u32 port) :
Wbfs_Fat(lba, size, part, port)
{
}
virtual u8 GetFSType(void) { return PART_FS_EXT; }
};
#endif //_WBFS_NTFS_H