mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-04 18:45:05 +01:00
9e79c9d99b
* code cleanup
31 lines
625 B
C++
31 lines
625 B
C++
#include "wbfs_ntfs.h"
|
|
#include "fatmounter.h"
|
|
#include "libntfs/ntfs.h"
|
|
|
|
s32 Wbfs_Ntfs::Open()
|
|
{
|
|
strcpy( wbfs_fs_drive, "NTFS:" );
|
|
return MountNTFS( lba );
|
|
}
|
|
|
|
int Wbfs_Ntfs::GetFragList( char *filename, _frag_append_t append_fragment, FragList *fs )
|
|
{
|
|
int ret = _NTFS_get_fragments( filename, append_fragment, fs );
|
|
if ( ret )
|
|
{
|
|
return ret;
|
|
}
|
|
|
|
// offset to start of partition
|
|
for ( unsigned int j = 0; j < fs->num; j++ )
|
|
{
|
|
fs->frag[j].sector += fs_ntfs_sec;
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
bool Wbfs_Ntfs::ShowFreeSpace( void )
|
|
{
|
|
return true;
|
|
}
|