mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-18 01:09:16 +01:00
8943592d0e
*Ignore sector size of wbfs partitions in MBR (some lazy Partition Manager don't change it). Reading it from the partition header now. *Several small bug fixes and cleanups *Fixed "Bannersound + BG Music after it" mode *Updated language files
29 lines
642 B
C++
29 lines
642 B
C++
#ifndef RECOURCES_H_
|
|
#define RECOURCES_H_
|
|
|
|
#include "libwiigui/gui_imagedata.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
|