mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-03-29 00:10:02 -05:00
18 lines
299 B
C++
18 lines
299 B
C++
#pragma once
|
|
|
|
#define RESOURCE_EXPORT(name) \
|
|
extern "C" unsigned char name[]; \
|
|
extern "C" int name##_size;
|
|
|
|
|
|
|
|
RESOURCE_EXPORT(splash);
|
|
RESOURCE_EXPORT(banner_light);
|
|
RESOURCE_EXPORT(banner_dark);
|
|
RESOURCE_EXPORT(imhex_logo);
|
|
|
|
RESOURCE_EXPORT(cacert);
|
|
|
|
|
|
|
|
#undef RESOURCE_EXPORT |