mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-18 09:19:17 +01:00
64744ce20d
*Fixed Toy Story 3 boot bug *Changed IOS limits. Now allowing all IOSs from 200-255 to support more Waninkoko cIOS slots. You will get a warning if you don't have an IOS installed and try to choose it.
20 lines
314 B
C++
20 lines
314 B
C++
#ifndef _WBFS_NTFS_H
|
|
#define _WBFS_NTFS_H
|
|
|
|
#include "wbfs_fat.h"
|
|
|
|
class Wbfs_Ntfs: public Wbfs_Fat
|
|
{
|
|
public:
|
|
Wbfs_Ntfs(u32 device, u32 lba, u32 size) :
|
|
Wbfs_Fat(device, lba, size)
|
|
{
|
|
}
|
|
|
|
virtual s32 Open();
|
|
|
|
bool ShowFreeSpace(void);
|
|
};
|
|
|
|
#endif //_WBFS_NTFS_H
|