mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-08 12:35:08 +01:00
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 void 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
|