2009-10-01 01:10:58 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* HomebrewFiles Class
|
|
|
|
* for USB Loader GX
|
|
|
|
***************************************************************************/
|
|
|
|
#ifndef ___HOMEBREWFILES_H_
|
|
|
|
#define ___HOMEBREWFILES_H_
|
|
|
|
|
|
|
|
#define MAXHOMEBREWS 500
|
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
typedef struct
|
|
|
|
{
|
2009-10-01 01:10:58 +02:00
|
|
|
char FileName[100];
|
|
|
|
char FilePath[150];
|
|
|
|
unsigned int FileSize;
|
|
|
|
} FileInfos;
|
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
class HomebrewFiles
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
//!Constructor
|
|
|
|
//!\param path Path where to check for homebrew files
|
|
|
|
HomebrewFiles( const char * path );
|
|
|
|
//!Destructor
|
|
|
|
~HomebrewFiles();
|
|
|
|
//! Load the dol/elf list of a path
|
|
|
|
//!\param path Path where to check for homebrew files
|
|
|
|
bool LoadPath( const char * path );
|
|
|
|
//! Get the a filename of the list
|
|
|
|
//!\param list index
|
|
|
|
char * GetFilename( int index );
|
|
|
|
//! Get the a filepath of the list
|
|
|
|
//!\param list index
|
|
|
|
char * GetFilepath( int index );
|
|
|
|
//! Get the a filesize of the list
|
|
|
|
//!\param list index
|
|
|
|
unsigned int GetFilesize( int index );
|
|
|
|
//! Get the filecount of the whole list
|
|
|
|
int GetFilecount();
|
|
|
|
//! Sort list by filepath
|
|
|
|
void SortList();
|
|
|
|
protected:
|
|
|
|
int filecount;
|
|
|
|
FileInfos *FileInfo;
|
2009-10-01 01:10:58 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|