20 lines
524 B
C
20 lines
524 B
C
/* This is the file that actually includes binary data meant to be embedded in
|
|
* the executable. Embedded files should be added as dependencies to this source
|
|
* file via the build system to ensure this translation unit is recompiled upon
|
|
* changes to an embedded file. */
|
|
|
|
#if RESOURCES_EMBEDDED
|
|
INCBIN_INCLUDE(res_tar, INCBIN_DIR "res.tar");
|
|
String inc_res_tar(void)
|
|
{
|
|
return INCBIN_GET(res_tar);
|
|
}
|
|
#endif
|
|
|
|
|
|
INCBIN_INCLUDE(dxc_tar, INCBIN_DIR "dxc.tar");
|
|
String inc_dxc_tar(void)
|
|
{
|
|
return INCBIN_GET(dxc_tar);
|
|
}
|