JUCE
Classes | Macros
system

Classes

class  SystemStats
 Contains methods for finding out about the current hardware and OS configuration. More...
 

Macros

#define JUCE_CALLTYPE
 This macro defines the C calling convention used as the standard for JUCE calls. More...
 
#define JUCE_CDECL
 
#define JUCE_LOG_CURRENT_ASSERTION
 
#define JUCE_BREAK_IN_DEBUGGER   { ::kill (0, SIGTRAP); }
 This will try to break into the debugger if the app is currently being debugged. More...
 
#define JUCE_ANALYZER_NORETURN
 
#define JUCE_FALLTHROUGH
 Used to silence Wimplicit-fallthrough on Clang and GCC where available as there are a few places in the codebase where we need to do this deliberately and want to ignore the warning. More...
 
#define JUCE_BLOCK_WITH_FORCED_SEMICOLON(x)   do { x } while (false)
 This is the good old C++ trick for creating a macro that forces the user to put a semicolon after it when they use it. More...
 
#define DBG(textToWrite)   JUCE_BLOCK_WITH_FORCED_SEMICOLON (juce::String tempDbgBuf; tempDbgBuf << textToWrite; juce::Logger::outputDebugString (tempDbgBuf);)
 Writes a string to the standard error stream. More...
 
#define jassertfalse   JUCE_BLOCK_WITH_FORCED_SEMICOLON (JUCE_LOG_CURRENT_ASSERTION; if (juce::juce_isRunningUnderDebugger()) JUCE_BREAK_IN_DEBUGGER; JUCE_ANALYZER_NORETURN)
 This will always cause an assertion failure. More...
 
#define jassert(expression)   JUCE_BLOCK_WITH_FORCED_SEMICOLON (if (! (expression)) jassertfalse;)
 Platform-independent assertion macro. More...
 
#define JUCE_JOIN_MACRO(item1, item2)   JUCE_JOIN_MACRO_HELPER (item1, item2)
 A good old-fashioned C macro concatenation helper. More...
 
#define JUCE_STRINGIFY(item)   JUCE_STRINGIFY_MACRO_HELPER (item)
 A handy C macro for stringifying any symbol, rather than just a macro parameter. More...
 
#define JUCE_DECLARE_NON_COPYABLE(className)
 This is a shorthand macro for declaring stubs for a class's copy constructor and operator=. More...
 
#define JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(className)
 This is a shorthand way of writing both a JUCE_DECLARE_NON_COPYABLE and JUCE_LEAK_DETECTOR macro for a class. More...
 
#define JUCE_PREVENT_HEAP_ALLOCATION
 This macro can be added to class definitions to disable the use of new/delete to allocate the object on the heap, forcing it to only be used as a stack or member variable. More...
 
#define JUCE_COMPILER_WARNING(message)   _Pragma(JUCE_STRINGIFY (JUCE_WARNING_HELPER (message)))
 This macro allows you to emit a custom compiler warning message. More...
 
#define forcedinline   inline
 A platform-independent way of forcing an inline function. More...
 
#define JUCE_ALIGN(bytes)   __declspec (align (bytes))
 This can be placed before a stack or member variable declaration to tell the compiler to align it to the specified number of bytes. More...
 
#define JUCE_DEPRECATED(functionDef)
 This macro can be used to wrap a function which has been deprecated. More...
 
#define JUCE_DEPRECATED_WITH_BODY(functionDef, body)
 
#define JUCE_DEPRECATED_STATIC(valueDef)
 
#define JUCE_DECLARE_DEPRECATED_STATIC(valueDef)
 
#define JUCE_NO_ASSOCIATIVE_MATH_OPTIMISATIONS   __attribute__((__optimize__("no-associative-math")))
 This can be appended to a function declaration to tell gcc to disable associative math optimisations which break some floating point algorithms. More...
 
#define JUCE_MAJOR_VERSION   5
 Current JUCE version number. More...
 
#define JUCE_MINOR_VERSION   4
 
#define JUCE_BUILDNUMBER   7
 
#define JUCE_VERSION   ((JUCE_MAJOR_VERSION << 16) + (JUCE_MINOR_VERSION << 8) + JUCE_BUILDNUMBER)
 Current JUCE version number. More...
 
#define JUCE_API
 This macro is added to all JUCE public class declarations. More...
 
#define JUCE_PUBLIC_IN_DLL_BUILD(declaration)   declaration;
 
#define JUCE_PUBLIC_FUNCTION   JUCE_API JUCE_CALLTYPE
 This macro is added to all JUCE public function declarations. More...
 
#define JUCE_ANDROID   1
 
#define JUCE_DEBUG   1
 
#define JUCE_BIG_ENDIAN   1
 
#define JUCE_BIG_ENDIAN   1
 
#define JUCE_32BIT   1
 
#define JUCE_32BIT   1
 
#define JUCE_INTEL   1
 

Detailed Description

Macro Definition Documentation

◆ JUCE_CALLTYPE

#define JUCE_CALLTYPE

◆ JUCE_CDECL

#define JUCE_CDECL

◆ JUCE_LOG_CURRENT_ASSERTION

#define JUCE_LOG_CURRENT_ASSERTION

◆ JUCE_BREAK_IN_DEBUGGER

#define JUCE_BREAK_IN_DEBUGGER   { ::kill (0, SIGTRAP); }

This will try to break into the debugger if the app is currently being debugged.

If called by an app that's not being debugged, the behaviour isn't defined - it may crash or not, depending on the platform.

See also
jassert()

◆ JUCE_ANALYZER_NORETURN

#define JUCE_ANALYZER_NORETURN

◆ JUCE_FALLTHROUGH

#define JUCE_FALLTHROUGH

Used to silence Wimplicit-fallthrough on Clang and GCC where available as there are a few places in the codebase where we need to do this deliberately and want to ignore the warning.

Referenced by CppTokeniserFunctions::writeEscapeChars().

◆ JUCE_BLOCK_WITH_FORCED_SEMICOLON

#define JUCE_BLOCK_WITH_FORCED_SEMICOLON (   x)    do { x } while (false)

This is the good old C++ trick for creating a macro that forces the user to put a semicolon after it when they use it.

◆ DBG

#define DBG (   textToWrite)    JUCE_BLOCK_WITH_FORCED_SEMICOLON (juce::String tempDbgBuf; tempDbgBuf << textToWrite; juce::Logger::outputDebugString (tempDbgBuf);)

Writes a string to the standard error stream.

Note that as well as a single string, you can use this to write multiple items as a stream, e.g.

DBG ("foo = " << foo << "bar = " << bar);

The macro is only enabled in a debug build, so be careful not to use it with expressions that have important side-effects!

See also
Logger::outputDebugString

Referenced by littlefoot::Program::getTotalSpaceNeeded(), OSCException::OSCException(), littlefoot::Runner< programAndHeapSpace, stackAndGlobalsSpace >::FunctionExecutionContext::run(), HeavyweightLeakedObjectDetector< OwnerClass >::~HeavyweightLeakedObjectDetector(), and LeakedObjectDetector< OwnerClass >::~LeakedObjectDetector().

◆ jassertfalse

#define jassertfalse   JUCE_BLOCK_WITH_FORCED_SEMICOLON (JUCE_LOG_CURRENT_ASSERTION; if (juce::juce_isRunningUnderDebugger()) JUCE_BREAK_IN_DEBUGGER; JUCE_ANALYZER_NORETURN)

This will always cause an assertion failure.

It is only compiled in a debug build, (unless JUCE_LOG_ASSERTIONS is enabled for your build).

See also
jassert

Referenced by ListenerList< MenuBarModel::Listener >::add(), ArrayBase< ProgressBar *, DummyCriticalSection >::addArray(), OwnedArray< MarkerList::Marker >::addCopiesOf(), SortedSet< ColourSetting >::addSet(), SingletonHolder< Type, MutexType, onlyCreateOncePerRun >::get(), littlefoot::LittleFootRemoteHeap< ImplementationClass >::getByte(), littlefoot::Runner< programAndHeapSpace, stackAndGlobalsSpace >::getHeapBits(), littlefoot::Program::getNumExtraBytesForOpcode(), BlocksProtocol::HostPacketDecoder< Handler >::handleButtonDownOrUp(), BlocksProtocol::HostPacketDecoder< Handler >::handleCustomMessage(), BlocksProtocol::HostPacketDecoder< Handler >::handleFirmwareUpdateACK(), BlocksProtocol::HostPacketDecoder< Handler >::handlePacketACK(), BlocksProtocol::HostPacketDecoder< Handler >::handleTopology(), BlocksProtocol::HostPacketDecoder< Handler >::handleTopologyEnd(), BlocksProtocol::HostPacketDecoder< Handler >::handleTouch(), BlocksProtocol::HostPacketDecoder< Handler >::handleTouchWithVelocity(), AudioProcessor::memoryWarningReceived(), JUCEApplicationBase::memoryWarningReceived(), dsp::Reverb::process(), BlocksProtocol::HostPacketDecoder< Handler >::processNextMessage(), BlocksProtocol::HostPacketDecoder< Handler >::processNextPacket(), dsp::StateVariableFilter::Filter< SampleType >::processSample(), Array< Component *>::remove(), littlefoot::Runner< programAndHeapSpace, stackAndGlobalsSpace >::FunctionExecutionContext::run(), OwnedArray< MarkerList::Marker >::set(), Array< Component *>::set(), littlefoot::LittleFootRemoteHeap< ImplementationClass >::setBits(), littlefoot::LittleFootRemoteHeap< ImplementationClass >::setByte(), HeavyweightLeakedObjectDetector< OwnerClass >::~HeavyweightLeakedObjectDetector(), and LeakedObjectDetector< OwnerClass >::~LeakedObjectDetector().

◆ jassert

#define jassert (   expression)    JUCE_BLOCK_WITH_FORCED_SEMICOLON (if (! (expression)) jassertfalse;)

Platform-independent assertion macro.

This macro gets turned into a no-op when you're building with debugging turned off, so be careful that the expression you pass to it doesn't perform any actions that are vital for the correct behaviour of your program!

See also
jassertfalse

Referenced by RectangleList< int >::add(), ArrayBase< ProgressBar *, DummyCriticalSection >::addArray(), OwnedArray< MarkerList::Marker >::addCopiesOf(), AudioBuffer< float >::addFrom(), AudioBuffer< float >::addFromWithRamp(), dsp::AudioBlock< const SampleType >::addSample(), AudioBuffer< float >::addSample(), SortedSet< ColourSetting >::addSet(), StatisticsAccumulator< FloatType >::addValue(), RectangleList< int >::addWithoutMerging(), dsp::Phase< NumericType >::advance(), String::appendCharPointer(), LinkedListPointer< ObjectType >::Appender::Appender(), ADSR::applyEnvelopeToBuffer(), SmoothedValueBase< SmoothedValue< NumericType, ValueSmoothingTypes::Linear > >::applyGain(), AudioBuffer< float >::applyGain(), AudioBuffer< float >::applyGainRamp(), dsp::AudioBlock< const SampleType >::AudioBlock(), AudioBuffer< float >::AudioBuffer(), LassoComponent< SelectableItemType >::beginLasso(), AudioBuffer< float >::clear(), AudioFormatReader::clearSamplesBeyondAvailableLength(), RectangleList< int >::clipTo(), AudioData::ConverterInstance< SourceSampleType, DestSampleType >::convertSamples(), AudioBuffer< float >::copyFrom(), AudioBuffer< float >::copyFromWithRamp(), LinkedListPointer< XmlElement >::copyToArray(), dsp::SIMDRegister< Type >::copyToRawArray(), littlefoot::NativeFunction::createID(), createPluginFilterOfType(), ReferenceCountedObject::decReferenceCount(), SingleThreadedReferenceCountedObject::decReferenceCount(), ReferenceCountedObject::decReferenceCountWithoutDeleting(), SingleThreadedReferenceCountedObject::decReferenceCountWithoutDeleting(), dsp::Matrix< ElementType >::end(), ArrayAllocationBase< ElementType, TypeOfCriticalSectionToUse >::ensureAllocatedSize(), ArrayBase< ProgressBar *, DummyCriticalSection >::ensureAllocatedSize(), SpinLock::exit(), AudioBuffer< float >::findMinMax(), dsp::SIMDRegister< Type >::fromRawArray(), dsp::SIMDRegister< Type >::get(), dsp::AudioBlock< const SampleType >::getChannelPointer(), UnityAudioEffectState::getEffectData(), RectangleList< int >::getIntersectionWith(), AudioBuffer< float >::getMagnitude(), littlefoot::Runner< programAndHeapSpace, stackAndGlobalsSpace >::getNativeFunction(), Draggable3DOrientation::getQuaternion(), AudioBuffer< float >::getReadPointer(), AudioBuffer< float >::getRMSLevel(), dsp::AudioBlock< const SampleType >::getSample(), AudioBuffer< float >::getSample(), WeakReference< ObjectType, ReferenceCountingType >::Master::getSharedPointer(), dsp::AudioBlock< const SampleType >::getSingleChannelBlock(), dsp::AudioBlock< const SampleType >::getSubBlock(), dsp::AudioBlock< const SampleType >::getSubsetChannelBlock(), dsp::LookupTable< Type >::getUnchecked(), AudioBuffer< float >::getWritePointer(), LinkedListPointer< XmlElement >::insertAtIndex(), LinkedListPointer< XmlElement >::insertNext(), BlocksProtocol::IntegerWithBitSize< 8 >::IntegerWithBitSize(), CharPointer_UTF8::isByteOrderMark(), CharPointer_UTF16::isByteOrderMarkBigEndian(), CharPointer_UTF16::isByteOrderMarkLittleEndian(), isPositiveAndBelow(), isPositiveAndNotGreaterThan(), EdgeTable::iterate(), jlimit(), jmap(), MidiMessage::MidiMessage(), ArrayBase< ProgressBar *, DummyCriticalSection >::move(), negativeAwareModulo(), Quaternion< float >::normalised(), dsp::Matrix< ElementType >::operator()(), ReferenceCountedObjectPtr< ImagePixelData >::operator*(), CharPointer_UTF8::operator++(), ReferenceCountedObjectPtr< ImagePixelData >::operator->(), LinkedListPointer< XmlElement >::operator=(), ValueWithDefault::operator=(), ArrayBase< ProgressBar *, DummyCriticalSection >::operator[](), dsp::SIMDRegister< Type >::operator[](), LassoComponent< SelectableItemType >::paint(), dsp::Polynomial< FloatingType >::Polynomial(), dsp::FIR::Filter< SampleType >::prepare(), dsp::ProcessorDuplicator< MonoProcessorType, StateType >::process(), dsp::Reverb::process(), dsp::LadderFilter< Type >::process(), dsp::ProcessorChain< Processors >::process(), dsp::Gain< FloatType >::process(), dsp::Bias< FloatType >::process(), dsp::FIR::Filter< SampleType >::process(), dsp::Oscillator< SampleType >::process(), dsp::AudioBlock< const SampleType >::process(), dsp::ProcessContextNonReplacing< ContextSampleType >::ProcessContextNonReplacing(), Reverb::processMono(), dsp::StateVariableFilter::Filter< SampleType >::processSample(), dsp::Oscillator< SampleType >::processSample(), dsp::FIR::Filter< SampleType >::processSample(), dsp::LookupTableTransform< Type >::processSample(), dsp::LookupTableTransform< Type >::processSampleUnchecked(), Reverb::processStereo(), littlefoot::Program::Program(), BlocksProtocol::Packed7BitArrayReader::readBits(), ListenerList< MenuBarModel::Listener >::remove(), Array< Component *>::remove(), ArrayBase< ProgressBar *, DummyCriticalSection >::removeElements(), Array< Component *>::removeLast(), SparseSet< int >::removeRange(), LinkedListPointer< XmlElement >::replaceNext(), dsp::LogRampedValue< FloatType >::reset(), SmoothedValue< Type >::reset(), Array< Component *>::resize(), AudioBuffer< float >::reverse(), littlefoot::Runner< programAndHeapSpace, stackAndGlobalsSpace >::FunctionExecutionContext::run(), dsp::SIMDRegister< Type >::set(), ArrayBase< ProgressBar *, DummyCriticalSection >::setAllocatedSize(), dsp::Bias< FloatType >::setBias(), dsp::StateVariableFilter::Parameters< NumericType >::setCutOffFrequency(), AudioBuffer< float >::setDataToReferTo(), dsp::LogRampedValue< FloatType >::setLogParameters(), dsp::AudioBlock< const SampleType >::setSample(), AudioBuffer< float >::setSample(), Reverb::setSampleRate(), ADSR::setSampleRate(), AudioBuffer< float >::setSize(), NormalisableRange< float >::setSkewForCentre(), SmoothedValue< Type >::setTargetValue(), Array< Component *>::setUnchecked(), CharPointer_UTF8::sizeInBytes(), SmoothedValue< Type >::SmoothedValue(), GridItem::Span::Span(), String::toDecimalStringWithSignificantFigures(), truncatePositiveToUnsignedInt(), TouchList< Type >::updateTouch(), Range< int64 >::withStartAndLength(), BlocksProtocol::Packed7BitArrayBuilder< maxPacketBytes >::writeBits(), BlocksProtocol::Packed7BitArrayBuilder< maxPacketBytes >::writeHeaderSysexBytes(), BlocksProtocol::Packed7BitArrayBuilder< maxPacketBytes >::writePacketSysexFooter(), BlocksProtocol::HostPacketBuilder< maxPacketBytes >::writePacketSysexHeaderBytes(), WeakReference< ObjectType, ReferenceCountingType >::Master::~Master(), ReferenceCountedObject::~ReferenceCountedObject(), SingleThreadedReferenceCountedObject::~SingleThreadedReferenceCountedObject(), and SingletonHolder< Type, MutexType, onlyCreateOncePerRun >::~SingletonHolder().

◆ JUCE_JOIN_MACRO

#define JUCE_JOIN_MACRO (   item1,
  item2 
)    JUCE_JOIN_MACRO_HELPER (item1, item2)

A good old-fashioned C macro concatenation helper.

This combines two items (which may themselves be macros) into a single string, avoiding the pitfalls of the ## macro operator.

◆ JUCE_STRINGIFY

#define JUCE_STRINGIFY (   item)    JUCE_STRINGIFY_MACRO_HELPER (item)

A handy C macro for stringifying any symbol, rather than just a macro parameter.

◆ JUCE_DECLARE_NON_COPYABLE

#define JUCE_DECLARE_NON_COPYABLE (   className)

◆ JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR

#define JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (   className)
Value:
JUCE_LEAK_DETECTOR(className)
#define JUCE_DECLARE_NON_COPYABLE(className)
This is a shorthand macro for declaring stubs for a class&#39;s copy constructor and operator=.
Definition: juce_PlatformDefs.h:216

This is a shorthand way of writing both a JUCE_DECLARE_NON_COPYABLE and JUCE_LEAK_DETECTOR macro for a class.

Referenced by AudioProcessorParameterGroup::addChild(), ActiveXControlComponent::areMouseEventsAllowed(), AudioPluginInstance::AudioPluginInstance(), TouchList< Type >::clear(), AudioFormatReader::clearSamplesBeyondAvailableLength(), AudioFormatManager::end(), ThreadWithProgressWindow::getAlertWindow(), AudioFormatReaderSource::getAudioFormatReader(), ComponentMovementWatcher::getComponent(), Component::Positioner::getComponent(), ResizableBorderComponent::getCurrentZone(), MemoryInputStream::getDataSize(), AudioDeviceManager::getDefaultMidiOutputName(), AudioProcessorPlayer::getDoublePrecisionProcessing(), PluginDirectoryScanner::getFailedFiles(), FileBasedDocument::getFile(), PropertiesFile::getFile(), AnimatedAppComponent::getFrameCounter(), AudioSourcePlayer::getGain(), AudioTransportSource::getGain(), OpenGLTexture::getHeight(), Viewport::getHorizontalScrollBar(), Graphics::getInternalContext(), AudioDeviceSelectorComponent::getItemHeight(), FileTreeComponent::getItemHeight(), HyperlinkButton::getJustificationType(), TextEditor::getKeyboardType(), ApplicationCommandManager::getKeyMappings(), FileLogger::getLogFile(), ComponentBoundsConstrainer::getMinimumWhenOffTheRight(), DynamicLibrary::getNativeHandle(), OutputStream::getNewLineString(), AudioParameterBool::getNormalisableRange(), AudioParameterInt::getNormalisableRange(), StretchableObjectResizer::getNumItems(), MidiKeyboardComponent::getOctaveForMiddleC(), PluginListComponent::getOptionsButton(), AudioProcessorGraph::AudioGraphIOProcessor::getParentGraph(), MemoryOutputStream::getPosition(), MemoryMappedFile::getRange(), StreamingSocket::getRawSocketHandle(), DatagramSocket::getRawSocketHandle(), AppleRemoteDevice::getRemoteId(), ResamplingAudioSource::getResamplingRatio(), ValueTreeSynchroniser::getRoot(), AudioVisualiserComponent::getSamplesPerBlock(), CodeEditorComponent::getScrollbarThickness(), dsp::FFT::getSize(), ApplicationProperties::getStorageParameters(), TemporaryFile::getTargetFile(), Thread::getThreadName(), AudioThumbnailCache::getTimeSliceThread(), ComboBox::getTooltip(), PropertyPanel::getViewport(), LassoComponent< SelectableItemType >::hitTest(), TableListBox::isAutoSizeMenuOptionShown(), ReverbAudioSource::isBypassed(), dsp::LookupTable< Type >::isInitialised(), BufferingAudioSource::isLooping(), PopupMenu::CustomComponent::isTriggeredAutomatically(), LADSPAPluginFormat::isTrivialToScan(), AudioUnitPluginFormat::isTrivialToScan(), VST3PluginFormat::isTrivialToScan(), VSTPluginFormat::isTrivialToScan(), OpenGLFrameBuffer::isValid(), FileInputStream::openedOk(), FileOutputStream::openedOk(), dsp::Convolution::process(), Reverb::processMono(), MultiChoicePropertyComponent::refresh(), MemoryMappedAudioFormatReader::scanMinAndMaxInterleaved(), MidiInput::setName(), MidiOutput::setName(), AudioCDBurner::BurnProgressListener::~BurnProgressListener(), and ScopedTimeMeasurement::~ScopedTimeMeasurement().

◆ JUCE_PREVENT_HEAP_ALLOCATION

#define JUCE_PREVENT_HEAP_ALLOCATION
Value:
private: \
static void* operator new (size_t) = delete; \
static void operator delete (void*) = delete;

This macro can be added to class definitions to disable the use of new/delete to allocate the object on the heap, forcing it to only be used as a stack or member variable.

◆ JUCE_COMPILER_WARNING

#define JUCE_COMPILER_WARNING (   message)    _Pragma(JUCE_STRINGIFY (JUCE_WARNING_HELPER (message)))

This macro allows you to emit a custom compiler warning message.

Very handy for marking bits of code as "to-do" items, or for shaming code written by your co-workers in a way that's hard to ignore.

GCC and Clang provide the #warning directive, but MSVC doesn't, so this macro is a cross-compiler way to get the same functionality as #warning.

◆ forcedinline

#define forcedinline   inline

A platform-independent way of forcing an inline function.

Use the syntax:

forcedinline void myfunction (int x)

Referenced by PixelARGB::blend().

◆ JUCE_ALIGN

#define JUCE_ALIGN (   bytes)    __declspec (align (bytes))

This can be placed before a stack or member variable declaration to tell the compiler to align it to the specified number of bytes.

◆ JUCE_DEPRECATED

#define JUCE_DEPRECATED (   functionDef)

This macro can be used to wrap a function which has been deprecated.

Referenced by ComboBox::getTooltip(), and AffineTransform::getTranslationY().

◆ JUCE_DEPRECATED_WITH_BODY

#define JUCE_DEPRECATED_WITH_BODY (   functionDef,
  body 
)

◆ JUCE_DEPRECATED_STATIC

#define JUCE_DEPRECATED_STATIC (   valueDef)

◆ JUCE_DECLARE_DEPRECATED_STATIC

#define JUCE_DECLARE_DEPRECATED_STATIC (   valueDef)

◆ JUCE_NO_ASSOCIATIVE_MATH_OPTIMISATIONS

#define JUCE_NO_ASSOCIATIVE_MATH_OPTIMISATIONS   __attribute__((__optimize__("no-associative-math")))

This can be appended to a function declaration to tell gcc to disable associative math optimisations which break some floating point algorithms.

Referenced by StatisticsAccumulator< FloatType >::getCount().

◆ JUCE_MAJOR_VERSION

#define JUCE_MAJOR_VERSION   5

Current JUCE version number.

See also SystemStats::getJUCEVersion() for a string version.

◆ JUCE_MINOR_VERSION

#define JUCE_MINOR_VERSION   4

◆ JUCE_BUILDNUMBER

#define JUCE_BUILDNUMBER   7

◆ JUCE_VERSION

#define JUCE_VERSION   ((JUCE_MAJOR_VERSION << 16) + (JUCE_MINOR_VERSION << 8) + JUCE_BUILDNUMBER)

Current JUCE version number.

Bits 16 to 32 = major version. Bits 8 to 16 = minor version. Bits 0 to 8 = point release.

See also SystemStats::getJUCEVersion() for a string version.

◆ JUCE_API

#define JUCE_API

This macro is added to all JUCE public class declarations.

Referenced by OutputStream::getNewLineString(), Thread::getThreadName(), RelativeTime::inSeconds(), operator<<(), and Time::toMilliseconds().

◆ JUCE_PUBLIC_IN_DLL_BUILD

#define JUCE_PUBLIC_IN_DLL_BUILD (   declaration)    declaration;

◆ JUCE_PUBLIC_FUNCTION

#define JUCE_PUBLIC_FUNCTION   JUCE_API JUCE_CALLTYPE

This macro is added to all JUCE public function declarations.

◆ JUCE_ANDROID

#define JUCE_ANDROID   1

◆ JUCE_DEBUG

#define JUCE_DEBUG   1

◆ JUCE_BIG_ENDIAN [1/2]

#define JUCE_BIG_ENDIAN   1

◆ JUCE_BIG_ENDIAN [2/2]

#define JUCE_BIG_ENDIAN   1

◆ JUCE_32BIT [1/2]

#define JUCE_32BIT   1

◆ JUCE_32BIT [2/2]

#define JUCE_32BIT   1

◆ JUCE_INTEL

#define JUCE_INTEL   1