//------------------------------------------------------------------------------ /* This file is part of Beast: https://github.com/vinniefalco/Beast Copyright 2013, Vinnie Falco Portions of this file are from JUCE. Copyright (c) 2013 - Raw Material Software Ltd. Please visit http://www.juce.com Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL , DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ //============================================================================== #if BEAST_INCLUDE_BEASTCONFIG #include #endif //============================================================================== #include #include #include #include #if ! BEAST_BSD #include #endif #if ! BEAST_ANDROID #include #endif #if BEAST_WINDOWS #include #include #include #if ! BEAST_MINGW #include #if ! BEAST_DONT_AUTOLINK_TO_WIN32_LIBRARIES #pragma comment (lib, "DbgHelp.lib") #endif #endif #if BEAST_MINGW #include #endif #else #if BEAST_LINUX || BEAST_ANDROID #include #include #include #include #include #endif #if BEAST_LINUX #include #endif #include #include #include #include #include #include #include #include #if ! BEAST_ANDROID && ! BEAST_BSD #include #endif #endif #if BEAST_MAC || BEAST_IOS #include #include #endif #if BEAST_ANDROID #include #endif //------------------------------------------------------------------------------ // If the MSVC debug heap headers were included, disable // the macros during the juce include since they conflict. #ifdef _CRTDBG_MAP_ALLOC #pragma push_macro("calloc") #pragma push_macro("free") #pragma push_macro("malloc") #pragma push_macro("realloc") #pragma push_macro("_recalloc") #pragma push_macro("_aligned_free") #pragma push_macro("_aligned_malloc") #pragma push_macro("_aligned_offset_malloc") #pragma push_macro("_aligned_realloc") #pragma push_macro("_aligned_recalloc") #pragma push_macro("_aligned_offset_realloc") #pragma push_macro("_aligned_offset_recalloc") #pragma push_macro("_aligned_msize") #undef calloc #undef free #undef malloc #undef realloc #undef _recalloc #undef _aligned_free #undef _aligned_malloc #undef _aligned_offset_malloc #undef _aligned_realloc #undef _aligned_recalloc #undef _aligned_offset_realloc #undef _aligned_offset_recalloc #undef _aligned_msize #endif #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #if BEAST_MAC || BEAST_IOS #include #endif #if BEAST_ANDROID #include "native/android_JNIHelpers.h" #endif #if ! BEAST_WINDOWS #include #endif #if BEAST_MAC || BEAST_IOS #include #include #include #elif BEAST_WINDOWS #include #include #include #elif BEAST_LINUX #include #include #elif BEAST_BSD #include #include #elif BEAST_ANDROID #include "native/android_Files.cpp" #include "native/android_Misc.cpp" #include "native/android_SystemStats.cpp" #include "native/android_Threads.cpp" #endif // Has to be outside the beast namespace extern "C" { void beast_reportFatalError (char const* message, char const* fileName, int lineNumber) { if (beast::beast_isRunningUnderDebugger()) beast_breakDebugger; beast::FatalError (message, fileName, lineNumber); BEAST_ANALYZER_NORETURN } } #ifdef _CRTDBG_MAP_ALLOC #pragma pop_macro("calloc") #pragma pop_macro("free") #pragma pop_macro("malloc") #pragma pop_macro("realloc") #pragma pop_macro("_recalloc") #pragma pop_macro("_aligned_free") #pragma pop_macro("_aligned_malloc") #pragma pop_macro("_aligned_offset_malloc") #pragma pop_macro("_aligned_realloc") #pragma pop_macro("_aligned_recalloc") #pragma pop_macro("_aligned_offset_realloc") #pragma pop_macro("_aligned_offset_recalloc") #pragma pop_macro("_aligned_msize") #endif