mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-19 17:59:16 +01:00
798ebc188d
*Corrected Screensaver appearance on startup after 30sec of unconnected WiiMote *Complete rewrite of theme downloader. (Downloading themes is not working currently because Deak Phreak changed something on wii.spiffy360.com. He said it's going to be changed back soon) *Added possibility to load theme images from a folder with the same name as the .them file. The "Image-Folder: Example\n" from the .them file is prioritized. *Updated some language files. (Translators please redownload the files from SVN. Many files had a lot of errors in them)
30 lines
664 B
C++
30 lines
664 B
C++
#ifndef RECOURCES_H_
|
|
#define RECOURCES_H_
|
|
|
|
#include "libwiigui/gui_imagedata.h"
|
|
#include "filelist.h"
|
|
|
|
typedef struct _RecourceFile
|
|
{
|
|
const char *filename;
|
|
const u8 *DefaultFile;
|
|
const u32 DefaultFileSize;
|
|
u8 *CustomFile;
|
|
u32 CustomFileSize;
|
|
} RecourceFile;
|
|
|
|
class Resources
|
|
{
|
|
public:
|
|
static void Clear();
|
|
static bool LoadFiles(const char * path);
|
|
static const u8 * GetFile(const char * filename);
|
|
static const u32 GetFileSize(const char * filename);
|
|
static GuiImageData * GetImageData(const char * filename);
|
|
|
|
private:
|
|
static RecourceFile RecourceFiles[];
|
|
};
|
|
|
|
#endif
|