/* ============================================================================== This file is part of the juce_core module of the JUCE library. Copyright (c) 2015 - ROLI Ltd. 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. ------------------------------------------------------------------------------ NOTE! This permissive ISC license applies ONLY to files within the juce_core module! All other JUCE modules are covered by a dual GPL/commercial license, so if you are using any other modules, be sure to check that you also comply with their license. For more details, visit www.juce.com ============================================================================== */ #ifndef JUCE_BASICNATIVEHEADERS_H_INCLUDED #define JUCE_BASICNATIVEHEADERS_H_INCLUDED #include "../system/juce_TargetPlatform.h" #undef T //============================================================================== #if JUCE_MAC || JUCE_IOS #if JUCE_IOS #import #import #import #import #include #else #define Point CarbonDummyPointName #define Component CarbonDummyCompName #import #import #undef Point #undef Component #include #endif #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include //============================================================================== #elif JUCE_WINDOWS #if JUCE_MSVC #ifndef _CPPRTTI #error "You're compiling without RTTI enabled! This is needed for a lot of JUCE classes, please update your compiler settings!" #endif #ifndef _CPPUNWIND #error "You're compiling without exceptions enabled! This is needed for a lot of JUCE classes, please update your compiler settings!" #endif #pragma warning (push, 0) // disable all warnings whilst including system headers #endif #define STRICT 1 #define WIN32_LEAN_AND_MEAN 1 #if JUCE_MINGW #define _WIN32_WINNT 0x0501 #else #define _WIN32_WINNT 0x0600 #endif #define _UNICODE 1 #define UNICODE 1 #ifndef _WIN32_IE #define _WIN32_IE 0x0500 #endif #include #include #include #include #include #include #include #include #include #include #include #include #include #include #if JUCE_MINGW #include #include #define alloca __builtin_alloca #else #include #include #endif #undef PACKED #if JUCE_MSVC #pragma warning (pop) #pragma warning (4: 4511 4512 4100 /*4365*/) // (enable some warnings that are turned off in VC8) #endif #if JUCE_MSVC && ! JUCE_DONT_AUTOLINK_TO_WIN32_LIBRARIES #pragma comment (lib, "kernel32.lib") #pragma comment (lib, "user32.lib") #pragma comment (lib, "wininet.lib") #pragma comment (lib, "advapi32.lib") #pragma comment (lib, "ws2_32.lib") #pragma comment (lib, "version.lib") #pragma comment (lib, "shlwapi.lib") #pragma comment (lib, "winmm.lib") #ifdef _NATIVE_WCHAR_T_DEFINED #ifdef _DEBUG #pragma comment (lib, "comsuppwd.lib") #else #pragma comment (lib, "comsuppw.lib") #endif #else #ifdef _DEBUG #pragma comment (lib, "comsuppd.lib") #else #pragma comment (lib, "comsupp.lib") #endif #endif #endif /* Used with DynamicLibrary to simplify importing functions from a win32 DLL. dll: the DynamicLibrary object functionName: function to import localFunctionName: name you want to use to actually call it (must be different) returnType: the return type params: list of params (bracketed) */ #define JUCE_LOAD_WINAPI_FUNCTION(dll, functionName, localFunctionName, returnType, params) \ typedef returnType (WINAPI *type##localFunctionName) params; \ type##localFunctionName localFunctionName = (type##localFunctionName) dll.getFunction (#functionName); //============================================================================== #elif JUCE_LINUX #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include //============================================================================== #elif JUCE_ANDROID #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #endif // Need to clear various moronic redefinitions made by system headers.. #undef max #undef min #undef direct #undef check #endif // JUCE_BASICNATIVEHEADERS_H_INCLUDED