mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-14 00:14:18 +00:00
Collected all the platform-specific code from the different build folders into a new folder in src/native. Also removed support for OSX10.2
This commit is contained in:
parent
f5a3fb0fb3
commit
ea83c7ee5e
88 changed files with 930 additions and 1349 deletions
117
src/native/juce_win32_NativeCode.cpp
Normal file
117
src/native/juce_win32_NativeCode.cpp
Normal file
|
|
@ -0,0 +1,117 @@
|
|||
/*
|
||||
==============================================================================
|
||||
|
||||
This file is part of the JUCE library - "Jules' Utility Class Extensions"
|
||||
Copyright 2004-9 by Raw Material Software Ltd.
|
||||
|
||||
------------------------------------------------------------------------------
|
||||
|
||||
JUCE can be redistributed and/or modified under the terms of the GNU General
|
||||
Public License (Version 2), as published by the Free Software Foundation.
|
||||
A copy of the license is included in the JUCE distribution, or can be found
|
||||
online at www.gnu.org/licenses.
|
||||
|
||||
JUCE is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
||||
A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||
|
||||
------------------------------------------------------------------------------
|
||||
|
||||
To release a closed-source product which uses JUCE, commercial licenses are
|
||||
available: visit www.rawmaterialsoftware.com/juce for more information.
|
||||
|
||||
==============================================================================
|
||||
*/
|
||||
|
||||
//==============================================================================
|
||||
/*
|
||||
This file wraps together all the win32-specific code, so that
|
||||
we can include all the native headers just once, and compile all our
|
||||
platform-specific stuff in one big lump, keeping it out of the way of
|
||||
the rest of the codebase.
|
||||
*/
|
||||
|
||||
//==============================================================================
|
||||
#include "windows/juce_win32_NativeIncludes.h"
|
||||
|
||||
#include "../juce_core/basics/juce_StandardHeader.h"
|
||||
|
||||
BEGIN_JUCE_NAMESPACE
|
||||
|
||||
//==============================================================================
|
||||
#include "../juce_core/basics/juce_Singleton.h"
|
||||
#include "../juce_core/basics/juce_Random.h"
|
||||
#include "../juce_core/basics/juce_SystemStats.h"
|
||||
#include "../juce_core/threads/juce_Process.h"
|
||||
#include "../juce_core/threads/juce_Thread.h"
|
||||
#include "../juce_core/threads/juce_InterProcessLock.h"
|
||||
#include "../juce_core/io/files/juce_FileInputStream.h"
|
||||
#include "../juce_core/io/files/juce_NamedPipe.h"
|
||||
#include "../juce_core/io/network/juce_URL.h"
|
||||
#include "../juce_core/misc/juce_PlatformUtilities.h"
|
||||
#include "../juce_core/text/juce_LocalisedStrings.h"
|
||||
#include "../juce_appframework/application/juce_DeletedAtShutdown.h"
|
||||
#include "../juce_appframework/application/juce_Application.h"
|
||||
#include "../juce_appframework/application/juce_SystemClipboard.h"
|
||||
#include "../juce_appframework/events/juce_MessageManager.h"
|
||||
#include "../juce_appframework/gui/graphics/contexts/juce_LowLevelGraphicsSoftwareRenderer.h"
|
||||
#include "../juce_appframework/gui/graphics/imaging/juce_ImageFileFormat.h"
|
||||
#include "../juce_appframework/gui/graphics/imaging/juce_CameraDevice.h"
|
||||
#include "../juce_appframework/gui/components/windows/juce_AlertWindow.h"
|
||||
#include "../juce_appframework/gui/components/juce_Desktop.h"
|
||||
#include "../juce_appframework/gui/components/menus/juce_MenuBarModel.h"
|
||||
#include "../juce_appframework/gui/components/special/juce_OpenGLComponent.h"
|
||||
#include "../juce_appframework/gui/components/special/juce_QuickTimeMovieComponent.h"
|
||||
#include "../juce_appframework/gui/components/mouse/juce_DragAndDropContainer.h"
|
||||
#include "../juce_appframework/gui/components/keyboard/juce_KeyPressMappingSet.h"
|
||||
#include "../juce_appframework/gui/components/layout/juce_ComponentMovementWatcher.h"
|
||||
#include "../juce_appframework/gui/components/special/juce_ActiveXControlComponent.h"
|
||||
#include "../juce_appframework/gui/components/special/juce_WebBrowserComponent.h"
|
||||
#include "../juce_appframework/gui/components/special/juce_DropShadower.h"
|
||||
#include "../juce_appframework/gui/components/special/juce_SystemTrayIconComponent.h"
|
||||
#include "../juce_appframework/gui/components/filebrowser/juce_FileChooser.h"
|
||||
#include "../juce_appframework/gui/components/lookandfeel/juce_LookAndFeel.h"
|
||||
#include "../juce_appframework/audio/audio_file_formats/juce_AudioCDBurner.h"
|
||||
#include "../juce_appframework/audio/audio_file_formats/juce_AudioCDReader.h"
|
||||
#include "../juce_appframework/audio/audio_sources/juce_AudioSource.h"
|
||||
#include "../juce_appframework/audio/dsp/juce_AudioDataConverters.h"
|
||||
#include "../juce_appframework/audio/devices/juce_AudioIODeviceType.h"
|
||||
#include "../juce_appframework/audio/devices/juce_MidiOutput.h"
|
||||
#include "../juce_appframework/audio/devices/juce_MidiInput.h"
|
||||
|
||||
|
||||
//==============================================================================
|
||||
#define JUCE_INCLUDED_FILE 1
|
||||
|
||||
// Now include the actual code files..
|
||||
#include "windows/juce_win32_DynamicLibraryLoader.cpp"
|
||||
#include "windows/juce_win32_SystemStats.cpp"
|
||||
#include "windows/juce_win32_Threads.cpp"
|
||||
#include "windows/juce_win32_Files.cpp"
|
||||
#include "windows/juce_win32_Network.cpp"
|
||||
#include "windows/juce_win32_PlatformUtils.cpp"
|
||||
|
||||
#if ! JUCE_ONLY_BUILD_CORE_LIBRARY
|
||||
#include "windows/juce_win32_Messaging.cpp"
|
||||
#include "windows/juce_win32_Windowing.cpp"
|
||||
#include "windows/juce_win32_Fonts.cpp"
|
||||
#include "windows/juce_win32_FileChooser.cpp"
|
||||
#include "windows/juce_win32_Misc.cpp"
|
||||
#include "windows/juce_win32_ActiveXComponent.cpp"
|
||||
#include "windows/juce_win32_QuickTimeMovieComponent.cpp"
|
||||
#include "windows/juce_win32_WebBrowserComponent.cpp"
|
||||
#include "windows/juce_win32_OpenGLComponent.cpp"
|
||||
#include "windows/juce_win32_AudioCDReader.cpp"
|
||||
#include "windows/juce_win32_Midi.cpp"
|
||||
#include "windows/juce_win32_ASIO.cpp"
|
||||
#include "windows/juce_win32_DirectSound.cpp"
|
||||
#include "windows/juce_win32_CameraDevice.cpp"
|
||||
#endif
|
||||
|
||||
//==============================================================================
|
||||
// Auto-link the other win32 libs that are needed by library calls..
|
||||
#if (JUCE_AMALGAMATED_TEMPLATE || defined (JUCE_DLL_BUILD)) && JUCE_MSVC && ! DONT_AUTOLINK_TO_WIN32_LIBRARIES
|
||||
#include "windows/juce_win32_AutoLinkLibraries.h"
|
||||
#endif
|
||||
|
||||
END_JUCE_NAMESPACE
|
||||
Loading…
Add table
Add a link
Reference in a new issue