usbloadergx/source/usbloader/wbfs/wbfs_ntfs.h
e.bovendeur ce5930f297 * Added Hermes rev5 support! (issue 1438)
* Updated to Hermes usb storage code
* Fixed some bugs in ntfs while writing timestamps, resulting in different hashes (dimok)
* Fixed codedump when switching partitions (issue 1454)
* Fixed graphical glitch on 4:3 screens, where the prefetch cover was visible in the coverwall
* Fixed a bug with installing games, due to the switch to C++ (dimok)
2010-02-22 21:29:47 +00:00

18 lines
358 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();
int GetFragList(char *filename, _frag_append_t append_fragment, FragList *fs);
bool ShowFreeSpace(void);
};
#endif //_WBFS_NTFS_H