1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-22 01:34:21 +00:00

Introjucer: extended the binary data format to include a list of the filenames of all the resources.

This commit is contained in:
jules 2013-09-30 15:39:00 +01:00
parent b9198f4f88
commit 342684a4c2
5 changed files with 69 additions and 2 deletions

View file

@ -2163,4 +2163,15 @@ const char* getNamedResource (const char* resourceNameUTF8, int& numBytes) throw
return 0;
}
const int namedResourceListSize = 5;
const char* namedResourceList[] =
{
"cello_wav",
"demo_table_data_xml",
"icons_zip",
"juce_png",
"treedemo_xml"
};
}