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.

159 lines
4.8KB

  1. /*
  2. ==============================================================================
  3. This file is part of the juce_core module of the JUCE library.
  4. Copyright (c) 2013 - Raw Material Software Ltd.
  5. Permission to use, copy, modify, and/or distribute this software for any purpose with
  6. or without fee is hereby granted, provided that the above copyright notice and this
  7. permission notice appear in all copies.
  8. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD
  9. TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN
  10. NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  11. DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
  12. IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
  13. CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  14. ------------------------------------------------------------------------------
  15. NOTE! This permissive ISC license applies ONLY to files within the juce_core module!
  16. All other JUCE modules are covered by a dual GPL/commercial license, so if you are
  17. using any other modules, be sure to check that you also comply with their license.
  18. For more details, visit www.juce.com
  19. ==============================================================================
  20. */
  21. #ifndef JUCE_STANDARDHEADER_H_INCLUDED
  22. #define JUCE_STANDARDHEADER_H_INCLUDED
  23. //==============================================================================
  24. /** Current JUCE version number.
  25. See also SystemStats::getJUCEVersion() for a string version.
  26. */
  27. #define JUCE_MAJOR_VERSION 3
  28. #define JUCE_MINOR_VERSION 0
  29. #define JUCE_BUILDNUMBER 8
  30. /** Current Juce version number.
  31. Bits 16 to 32 = major version.
  32. Bits 8 to 16 = minor version.
  33. Bits 0 to 8 = point release.
  34. See also SystemStats::getJUCEVersion() for a string version.
  35. */
  36. #define JUCE_VERSION ((JUCE_MAJOR_VERSION << 16) + (JUCE_MINOR_VERSION << 8) + JUCE_BUILDNUMBER)
  37. //==============================================================================
  38. #include "juce_PlatformDefs.h"
  39. //==============================================================================
  40. // Now we'll include some common OS headers..
  41. #if JUCE_MSVC
  42. #pragma warning (push)
  43. #pragma warning (disable: 4514 4245 4100)
  44. #endif
  45. #include <cstdlib>
  46. #include <cstdarg>
  47. #include <climits>
  48. #include <limits>
  49. #include <cmath>
  50. #include <cwchar>
  51. #include <stdexcept>
  52. #include <typeinfo>
  53. #include <cstring>
  54. #include <cstdio>
  55. #include <iostream>
  56. #include <vector>
  57. #include <algorithm>
  58. #include <functional>
  59. #if JUCE_USE_MSVC_INTRINSICS
  60. #include <intrin.h>
  61. #endif
  62. #if JUCE_MAC || JUCE_IOS
  63. #include <libkern/OSAtomic.h>
  64. #endif
  65. #if JUCE_LINUX
  66. #include <signal.h>
  67. #if __INTEL_COMPILER
  68. #if __ia64__
  69. #include <ia64intrin.h>
  70. #else
  71. #include <ia32intrin.h>
  72. #endif
  73. #endif
  74. #endif
  75. #if JUCE_MSVC && JUCE_DEBUG
  76. #include <crtdbg.h>
  77. #endif
  78. #if JUCE_MSVC
  79. #pragma warning (pop)
  80. #endif
  81. #if JUCE_ANDROID
  82. #include <sys/atomics.h>
  83. #include <byteswap.h>
  84. #endif
  85. // undef symbols that are sometimes set by misguided 3rd-party headers..
  86. #undef check
  87. #undef TYPE_BOOL
  88. #undef max
  89. #undef min
  90. //==============================================================================
  91. // DLL building settings on Windows
  92. #if JUCE_MSVC
  93. #ifdef JUCE_DLL_BUILD
  94. #define JUCE_API __declspec (dllexport)
  95. #pragma warning (disable: 4251)
  96. #elif defined (JUCE_DLL)
  97. #define JUCE_API __declspec (dllimport)
  98. #pragma warning (disable: 4251)
  99. #endif
  100. #ifdef __INTEL_COMPILER
  101. #pragma warning (disable: 1125) // (virtual override warning)
  102. #endif
  103. #elif defined (JUCE_DLL) || defined (JUCE_DLL_BUILD)
  104. #define JUCE_API __attribute__ ((visibility("default")))
  105. #endif
  106. //==============================================================================
  107. #ifndef JUCE_API
  108. #define JUCE_API /**< This macro is added to all juce public class declarations. */
  109. #endif
  110. #if JUCE_MSVC && JUCE_DLL_BUILD
  111. #define JUCE_PUBLIC_IN_DLL_BUILD(declaration) public: declaration; private:
  112. #else
  113. #define JUCE_PUBLIC_IN_DLL_BUILD(declaration) declaration;
  114. #endif
  115. /** This macro is added to all juce public function declarations. */
  116. #define JUCE_PUBLIC_FUNCTION JUCE_API JUCE_CALLTYPE
  117. #if (! defined (JUCE_CATCH_DEPRECATED_CODE_MISUSE)) && JUCE_DEBUG && ! DOXYGEN
  118. /** This turns on some non-essential bits of code that should prevent old code from compiling
  119. in cases where method signatures have changed, etc.
  120. */
  121. #define JUCE_CATCH_DEPRECATED_CODE_MISUSE 1
  122. #endif
  123. #ifndef DOXYGEN
  124. #define JUCE_NAMESPACE juce // This old macro is deprecated: you should just use the juce namespace directly.
  125. #endif
  126. #endif // JUCE_STANDARDHEADER_H_INCLUDED