1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Re-saved all projects

This commit is contained in:
ed 2018-04-17 08:43:25 +01:00
parent 3e75fce282
commit f47d8d2425
6 changed files with 12 additions and 12 deletions

View file

@ -657,7 +657,7 @@ static const unsigned char temp_binary_data_0[] =
const char* juce_icon_png = (const char*) temp_binary_data_0;
const char* getNamedResource (const char* resourceNameUTF8, int& numBytes) noexcept
const char* getNamedResource (const char* resourceNameUTF8, int& numBytes)
{
unsigned int hash = 0;
if (resourceNameUTF8 != 0)
@ -684,7 +684,7 @@ const char* originalFilenames[] =
"juce_icon.png"
};
const char* getNamedResourceOriginalFilename (const char* resourceNameUTF8) noexcept
const char* getNamedResourceOriginalFilename (const char* resourceNameUTF8)
{
for (unsigned int i = 0; i < (sizeof (namedResourceList) / sizeof (namedResourceList[0])); ++i)
{

View file

@ -22,9 +22,9 @@ namespace BinaryData
// If you provide the name of one of the binary resource variables above, this function will
// return the corresponding data and its size (or a null pointer if the name isn't found).
const char* getNamedResource (const char* resourceNameUTF8, int& dataSizeInBytes) noexcept;
const char* getNamedResource (const char* resourceNameUTF8, int& dataSizeInBytes);
// If you provide the name of one of the binary resource variables above, this function will
// return the corresponding original, non-mangled filename (or a null pointer if the name isn't found).
const char* getNamedResourceOriginalFilename (const char* resourceNameUTF8) noexcept;
const char* getNamedResourceOriginalFilename (const char* resourceNameUTF8);
}