mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-05 19:15:07 +01:00
7f2778e17f
*Some source optimizations *Increased warning output with -Wextra and fixed the compile warnings
17 lines
306 B
C++
17 lines
306 B
C++
#ifndef _WBFS_NTFS_H
|
|
#define _WBFS_NTFS_H
|
|
|
|
#include "wbfs_fat.h"
|
|
|
|
class Wbfs_Ntfs: public Wbfs_Fat
|
|
{
|
|
public:
|
|
Wbfs_Ntfs(u32 lba, u32 size, u32 part) :
|
|
Wbfs_Fat(lba, size, part)
|
|
{
|
|
}
|
|
virtual u8 GetFSType(void) { return PART_FS_NTFS; }
|
|
};
|
|
|
|
#endif //_WBFS_NTFS_H
|