Audio plugin host https://kx.studio/carla
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.

62 lines
2.2KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2015 - ROLI Ltd.
  5. Permission is granted to use this software under the terms of either:
  6. a) the GPL v2 (or any later version)
  7. b) the Affero GPL v3
  8. Details of these licenses can be found at: www.gnu.org/licenses
  9. JUCE is distributed in the hope that it will be useful, but WITHOUT ANY
  10. WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  11. A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  12. ------------------------------------------------------------------------------
  13. To release a closed-source product which uses JUCE, commercial licenses are
  14. available: visit www.juce.com for more information.
  15. ==============================================================================
  16. */
  17. #ifndef JUCE_EVENTS_H_INCLUDED
  18. #define JUCE_EVENTS_H_INCLUDED
  19. //==============================================================================
  20. #include "../juce_core/juce_core.h"
  21. namespace juce
  22. {
  23. #include "messages/juce_MessageManager.h"
  24. #include "messages/juce_Message.h"
  25. #include "messages/juce_MessageListener.h"
  26. #include "messages/juce_CallbackMessage.h"
  27. #include "messages/juce_DeletedAtShutdown.h"
  28. #include "messages/juce_NotificationType.h"
  29. #include "messages/juce_ApplicationBase.h"
  30. #include "messages/juce_Initialisation.h"
  31. #include "messages/juce_MountedVolumeListChangeDetector.h"
  32. #include "broadcasters/juce_ActionBroadcaster.h"
  33. #include "broadcasters/juce_ActionListener.h"
  34. #include "broadcasters/juce_AsyncUpdater.h"
  35. #include "broadcasters/juce_ChangeListener.h"
  36. #include "broadcasters/juce_ChangeBroadcaster.h"
  37. #include "timers/juce_Timer.h"
  38. #include "timers/juce_MultiTimer.h"
  39. #include "interprocess/juce_InterprocessConnection.h"
  40. #include "interprocess/juce_InterprocessConnectionServer.h"
  41. #include "interprocess/juce_ConnectedChildProcess.h"
  42. #include "native/juce_ScopedXLock.h"
  43. #if JUCE_EVENTS_INCLUDE_WIN32_MESSAGE_WINDOW && JUCE_WINDOWS
  44. #include "native/juce_win32_HiddenMessageWindow.h"
  45. #endif
  46. }
  47. #endif // JUCE_EVENTS_H_INCLUDED