mirror of
https://github.com/wiiu-env/libgui.git
synced 2024-11-15 04:45:06 +01:00
17 lines
315 B
C
17 lines
315 B
C
#ifndef _FILELIST_H_
|
|
#define _FILELIST_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef struct _ResourceFile {
|
|
const char *filename;
|
|
const uint8_t *DefaultFile;
|
|
const uint32_t &DefaultFileSize;
|
|
uint8_t *CustomFile;
|
|
uint32_t CustomFileSize;
|
|
} ResourceFile;
|
|
|
|
ResourceFile * getResourceList();
|
|
|
|
#endif
|