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.

74 lines
2.5KB

  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. #ifndef __JUCE_RTAS_DIGICODE_HEADER_JUCEHEADER__
  19. #define __JUCE_RTAS_DIGICODE_HEADER_JUCEHEADER__
  20. #include "../juce_IncludeCharacteristics.h"
  21. //==============================================================================
  22. #if JucePlugin_Build_RTAS
  23. #ifdef _MSC_VER
  24. #define kCompileAsCodeResource 0
  25. #define kBuildStandAlone 0
  26. #define kNoDSP 0
  27. #define kNoDAE 0
  28. #define kNoSDS 0
  29. #define kNoViews 0
  30. #define kUseDSPCodeDecode 0
  31. #define WIN32 1
  32. #define WINDOWS_VERSION 1
  33. #define PLUGIN_SDK_BUILD 1
  34. #define PLUGIN_SDK_DIRECTMIDI 1
  35. // the Digidesign projects all use a struct alignment of 2..
  36. #pragma pack (2)
  37. #pragma warning (disable: 4267 4996 4311 4312 4103)
  38. #include "ForcedInclude.h"
  39. #else
  40. #define kCompileAsCodeResource 0
  41. #define kNoDSP 1
  42. #define kNoDAE 0
  43. #define kNoSDS 0
  44. #define kNoViews 0
  45. #define kUseDSPCodeDecode 0
  46. #define MAC_VERSION 1
  47. #define PLUGIN_SDK_BUILD 1
  48. #define PLUGIN_SDK_DIRECTMIDI 1
  49. #define DIGI_PASCAL
  50. #include "MacAlwaysInclude.h"
  51. #endif
  52. #endif
  53. #endif // __JUCE_RTAS_DIGICODE_HEADER_JUCEHEADER__