CSE2-tweaks/src/Resource.cpp

43 lines
894 B
C++

// Released under the MIT licence.
// See LICENCE.txt for details.
#include "Resource.h"
#include <stddef.h>
#include <string.h>
#ifndef _WIN32
static const unsigned char rICON_MINI[] = {
#include "Resource/ICON/ICON_MINI.png.h"
};
#endif
static const struct
{
const char *type;
const char *name;
const unsigned char *data;
size_t size;
} resources[] = {
#ifndef _WIN32
{"ICON", "ICON_MINI", rICON_MINI, sizeof(rICON_MINI)},
#endif
{"DUMMY", "DUMMY", NULL, 0} // Just here to prevent errors in the event the array is otherwise empty
};
const unsigned char* FindResource(const char *name, const char *type, size_t *size)
{
for (size_t i = 0; i < sizeof(resources) / sizeof(resources[0]); ++i)
{
if (!strcmp(name, resources[i].name) && !strcmp(type, resources[i].type))
{
if (size != NULL)
*size = resources[i].size;
return resources[i].data;
}
}
return NULL;
}