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-7 by Raw Material Software ltd.
  5. ------------------------------------------------------------------------------
  6. JUCE can be redistributed and/or modified under the terms of the
  7. GNU General Public License, as published by the Free Software Foundation;
  8. either version 2 of the License, or (at your option) any later version.
  9. JUCE is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with JUCE; if not, visit www.gnu.org/licenses or write to the
  15. Free Software Foundation, Inc., 59 Temple Place, Suite 330,
  16. Boston, MA 02111-1307 USA
  17. ------------------------------------------------------------------------------
  18. If you'd like to release a closed-source product which uses JUCE, commercial
  19. licenses are also available: visit www.rawmaterialsoftware.com/juce for
  20. more information.
  21. ==============================================================================
  22. */
  23. #ifndef __JUCE_RTAS_DIGICODE_HEADER_JUCEHEADER__
  24. #define __JUCE_RTAS_DIGICODE_HEADER_JUCEHEADER__
  25. #include "../juce_IncludeCharacteristics.h"
  26. //==============================================================================
  27. #ifdef _MSC_VER
  28. #define kCompileAsCodeResource 0
  29. #define kBuildStandAlone 0
  30. #define kNoDSP 0
  31. #define kNoDAE 0
  32. #define kNoSDS 0
  33. #define kNoViews 0
  34. #define kUseDSPCodeDecode 0
  35. #define WINDOWS_VERSION 1
  36. #define PLUGIN_SDK_BUILD 1
  37. #define PLUGIN_SDK_DIRECTMIDI 1
  38. // the Digidesign projects all use a struct alignment of 2..
  39. #pragma pack (2)
  40. #pragma warning (disable: 4267 4996 4311 4312 4103)
  41. #include "ForcedInclude.h"
  42. #else
  43. #define kCompileAsCodeResource 0
  44. #define kNoDSP 1
  45. #define kNoDAE 0
  46. #define kNoSDS 0
  47. #define kNoViews 0
  48. #define kUseDSPCodeDecode 0
  49. #define PLUGIN_SDK_BUILD 1
  50. #define PLUGIN_SDK_DIRECTMIDI 1
  51. #endif
  52. #endif // __JUCE_RTAS_DIGICODE_HEADER_JUCEHEADER__