mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-04 18:45:05 +01:00
30535c6f5d
formatted the code to make it easier to read. no functional changes at all. i didn't put anything from the libwiigui folder or banner folder in the beautifier. my automated .bat seems to have done a good job. the only places i see it fucked up was on (GXColor){blablabla}. it treated the brackets in the color like all the other brackets and put the color on a new line and indented it. i think i fixed most of them. not sure if it messed up anywhere else. also not sure about how it handled different linebreaks. it looks fine on windows. if it looks messed up on linux, it can be reverted. the code still compiles and runs fine.
45 lines
1.2 KiB
C++
45 lines
1.2 KiB
C++
/****************************************************************************
|
|
* HomebrewFiles Class
|
|
* for USB Loader GX
|
|
***************************************************************************/
|
|
#ifndef ___HOMEBREWFILES_H_
|
|
#define ___HOMEBREWFILES_H_
|
|
|
|
#define MAXHOMEBREWS 500
|
|
|
|
typedef struct {
|
|
char FileName[100];
|
|
char FilePath[150];
|
|
unsigned int FileSize;
|
|
} FileInfos;
|
|
|
|
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;
|
|
};
|
|
|
|
#endif
|