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:
parent
f7a3fb510e
commit
8d4f176b30
2 changed files with 724 additions and 692 deletions
File diff suppressed because it is too large
Load diff
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue