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

MimeTypes: Speed up release-mode compilation

This commit is contained in:
reuk 2022-11-08 11:53:40 +00:00
parent f7a3fb510e
commit 8d4f176b30
No known key found for this signature in database
GPG key ID: 9ADCD339CFC98A11
2 changed files with 724 additions and 692 deletions

File diff suppressed because it is too large Load diff

View file

@ -28,18 +28,18 @@
namespace juce
{
namespace MimeTypeTable
struct MimeTypeTable
{
/* @internal */
void registerCustomMimeTypeForFileExtension (const String& mimeType, const String& fileExtension);
static void registerCustomMimeTypeForFileExtension (const String& mimeType, const String& fileExtension);
/* @internal */
StringArray getMimeTypesForFileExtension (const String& fileExtension);
static StringArray getMimeTypesForFileExtension (const String& fileExtension);
/* @internal */
StringArray getFileExtensionsForMimeType (const String& mimeType);
static StringArray getFileExtensionsForMimeType (const String& mimeType);
} // namespace MimeTypeTable
};
} // namespace juce