mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-22 01:34:21 +00:00
Implemented thread naming for mac + linux. Minor string tweaks. Android changes. Couple of other minor changes.
This commit is contained in:
parent
413e00631b
commit
c26ac47dff
35 changed files with 788 additions and 256 deletions
|
|
@ -78,6 +78,16 @@ JUCE_API void JUCE_CALLTYPE initialiseJuce_NonGUI()
|
|||
static_jassert (sizeof (uint32) == 4);
|
||||
static_jassert (sizeof (int64) == 8);
|
||||
static_jassert (sizeof (uint64) == 8);
|
||||
|
||||
#if JUCE_NATIVE_WCHAR_IS_UTF8
|
||||
static_jassert (sizeof (wchar_t) == 1);
|
||||
#elif JUCE_NATIVE_WCHAR_IS_UTF16
|
||||
static_jassert (sizeof (wchar_t) == 2);
|
||||
#elif JUCE_NATIVE_WCHAR_IS_UTF32
|
||||
static_jassert (sizeof (wchar_t) == 4);
|
||||
#else
|
||||
#error "native wchar_t size is unknown"
|
||||
#endif
|
||||
}
|
||||
|
||||
JUCE_API void JUCE_CALLTYPE shutdownJuce_NonGUI()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue