The JUCE cross-platform C++ framework, with DISTRHO/KXStudio specific changes
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

119 lines
6.0KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library - "Jules' Utility Class Extensions"
  4. Copyright 2004-9 by Raw Material Software Ltd.
  5. ------------------------------------------------------------------------------
  6. JUCE can be redistributed and/or modified under the terms of the GNU General
  7. Public License (Version 2), as published by the Free Software Foundation.
  8. A copy of the license is included in the JUCE distribution, or can be found
  9. online at www.gnu.org/licenses.
  10. JUCE is distributed in the hope that it will be useful, but WITHOUT ANY
  11. WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  12. A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  13. ------------------------------------------------------------------------------
  14. To release a closed-source product which uses JUCE, commercial licenses are
  15. available: visit www.rawmaterialsoftware.com/juce for more information.
  16. ==============================================================================
  17. */
  18. //==============================================================================
  19. /*
  20. This file wraps together all the win32-specific code, so that
  21. we can include all the native headers just once, and compile all our
  22. platform-specific stuff in one big lump, keeping it out of the way of
  23. the rest of the codebase.
  24. */
  25. //==============================================================================
  26. #include "juce_win32_NativeIncludes.h"
  27. #include "../../../src/juce_core/basics/juce_StandardHeader.h"
  28. BEGIN_JUCE_NAMESPACE
  29. //==============================================================================
  30. #include "../../../src/juce_core/basics/juce_Singleton.h"
  31. #include "../../../src/juce_core/basics/juce_Random.h"
  32. #include "../../../src/juce_core/basics/juce_SystemStats.h"
  33. #include "../../../src/juce_core/threads/juce_Process.h"
  34. #include "../../../src/juce_core/threads/juce_Thread.h"
  35. #include "../../../src/juce_core/threads/juce_InterProcessLock.h"
  36. #include "../../../src/juce_core/io/files/juce_FileInputStream.h"
  37. #include "../../../src/juce_core/io/files/juce_NamedPipe.h"
  38. #include "../../../src/juce_core/io/network/juce_URL.h"
  39. #include "../../../src/juce_core/misc/juce_PlatformUtilities.h"
  40. #include "../../../src/juce_core/text/juce_LocalisedStrings.h"
  41. #include "../../../src/juce_appframework/application/juce_DeletedAtShutdown.h"
  42. #include "../../../src/juce_appframework/application/juce_Application.h"
  43. #include "../../../src/juce_appframework/application/juce_SystemClipboard.h"
  44. #include "../../../src/juce_appframework/events/juce_MessageManager.h"
  45. #include "../../../src/juce_appframework/gui/graphics/contexts/juce_LowLevelGraphicsSoftwareRenderer.h"
  46. #include "../../../src/juce_appframework/gui/graphics/imaging/juce_ImageFileFormat.h"
  47. #include "../../../src/juce_appframework/gui/graphics/imaging/juce_CameraDevice.h"
  48. #include "../../../src/juce_appframework/gui/components/windows/juce_AlertWindow.h"
  49. #include "../../../src/juce_appframework/gui/components/juce_Desktop.h"
  50. #include "../../../src/juce_appframework/gui/components/menus/juce_MenuBarModel.h"
  51. #include "../../../src/juce_appframework/gui/components/special/juce_OpenGLComponent.h"
  52. #include "../../../src/juce_appframework/gui/components/special/juce_QuickTimeMovieComponent.h"
  53. #include "../../../src/juce_appframework/gui/components/mouse/juce_DragAndDropContainer.h"
  54. #include "../../../src/juce_appframework/gui/components/keyboard/juce_KeyPressMappingSet.h"
  55. #include "../../../src/juce_appframework/gui/components/layout/juce_ComponentMovementWatcher.h"
  56. #include "../../../src/juce_appframework/gui/components/special/juce_ActiveXControlComponent.h"
  57. #include "../../../src/juce_appframework/gui/components/special/juce_WebBrowserComponent.h"
  58. #include "../../../src/juce_appframework/gui/components/special/juce_DropShadower.h"
  59. #include "../../../src/juce_appframework/gui/components/special/juce_SystemTrayIconComponent.h"
  60. #include "../../../src/juce_appframework/gui/components/filebrowser/juce_FileChooser.h"
  61. #include "../../../src/juce_appframework/gui/components/lookandfeel/juce_LookAndFeel.h"
  62. #include "../../../src/juce_appframework/audio/audio_file_formats/juce_AudioCDBurner.h"
  63. #include "../../../src/juce_appframework/audio/audio_file_formats/juce_AudioCDReader.h"
  64. #include "../../../src/juce_appframework/audio/audio_sources/juce_AudioSource.h"
  65. #include "../../../src/juce_appframework/audio/dsp/juce_AudioDataConverters.h"
  66. #include "../../../src/juce_appframework/audio/devices/juce_AudioIODeviceType.h"
  67. #include "../../../src/juce_appframework/audio/devices/juce_MidiOutput.h"
  68. #include "../../../src/juce_appframework/audio/devices/juce_MidiInput.h"
  69. //==============================================================================
  70. #define JUCE_INCLUDED_FILE 1
  71. // Now include the actual code files..
  72. #include "juce_win32_DynamicLibraryLoader.cpp"
  73. #include "juce_win32_SystemStats.cpp"
  74. #include "juce_win32_Threads.cpp"
  75. #include "juce_win32_Files.cpp"
  76. #include "juce_win32_Network.cpp"
  77. #include "juce_win32_PlatformUtils.cpp"
  78. #if ! JUCE_ONLY_BUILD_CORE_LIBRARY
  79. #include "juce_win32_Messaging.cpp"
  80. #include "juce_win32_Windowing.cpp"
  81. #include "juce_win32_Fonts.cpp"
  82. #include "juce_win32_FileChooser.cpp"
  83. #include "juce_win32_Misc.cpp"
  84. #include "juce_win32_ActiveXComponent.cpp"
  85. #include "juce_win32_QuickTimeMovieComponent.cpp"
  86. #include "juce_win32_WebBrowserComponent.cpp"
  87. #include "juce_win32_OpenGLComponent.cpp"
  88. #include "juce_win32_AudioCDReader.cpp"
  89. #include "juce_win32_Midi.cpp"
  90. #include "juce_win32_ASIO.cpp"
  91. #include "juce_win32_DirectSound.cpp"
  92. #include "juce_win32_CameraDevice.cpp"
  93. #endif
  94. //==============================================================================
  95. // Auto-link the other win32 libs that are needed by library calls..
  96. #if defined (JUCE_DLL_BUILD) && JUCE_MSVC
  97. #include "juce_win32_AutoLinkLibraries.h"
  98. #endif
  99. END_JUCE_NAMESPACE