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.

38 lines
1.1KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE 6 technical preview.
  4. Copyright (c) 2020 - Raw Material Software Limited
  5. You may use this code under the terms of the GPL v3
  6. (see www.gnu.org/licenses).
  7. For this technical preview, this file is not subject to commercial licensing.
  8. JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
  9. EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
  10. DISCLAIMED.
  11. ==============================================================================
  12. */
  13. #include "../juce_audio_plugin_client.h"
  14. #include "juce_CreatePluginFilter.h"
  15. namespace juce
  16. {
  17. #define Component juce::Component
  18. #if JUCE_MAC
  19. #define Point juce::Point
  20. void repostCurrentNSEvent();
  21. #endif
  22. //==============================================================================
  23. inline const PluginHostType& getHostType()
  24. {
  25. static PluginHostType hostType;
  26. return hostType;
  27. }
  28. }