-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathjcf_lime_juce.h
More file actions
49 lines (39 loc) · 1.03 KB
/
jcf_lime_juce.h
File metadata and controls
49 lines (39 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#pragma once
/*
BEGIN_JUCE_MODULE_DECLARATION
ID: jcf_lime_juce
vendor: juce
version: 4.2.1
name: JCF LIME JUCE
description: Utilities applicable to many JUCE application
website: http://www.juce.com/juce
license: Commerical
dependencies: juce_core juce_data_structures
OSXFrameworks:
iOSFrameworks:
END_JUCE_MODULE_DECLARATION
*/
#include <juce_core/juce_core.h>
/**
* Handy macro for cross-platform menu titles, e.g. Open In Explorer
*/
#ifdef _WIN32
#define EXPLORER_OR_FINDER "Explorer"
#else
#define EXPLORER_OR_FINDER "Finder"
#endif
namespace juce
{
inline bool operator< (const Identifier& a, const Identifier& b)
{
return a.toString() < b.toString();
}
}
#include "ui/jcf_font_awesome.h"
#include "utils/other_utils.h"
#include "utils/pitch.h"
#include "crypto/jcf_blowfish_extended.h"
#include "crypto/jcf_secure_credentials.h"
#include "utils/lock_free_call_queue.h"
#include "utils/multi_async_updater.h"
#include "utils/app_options.h"