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.

AsioWrapper.hpp 2.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /* Copyright 2016, Ableton AG, Berlin. All rights reserved.
  2. *
  3. * This program is free software: you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License as published by
  5. * the Free Software Foundation, either version 2 of the License, or
  6. * (at your option) any later version.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. *
  16. * If you would like to incorporate Link into a proprietary software application,
  17. * please contact <link-devs@ableton.com>.
  18. */
  19. #pragma once
  20. /*!
  21. * \brief Wrapper file for AsioStandalone library
  22. *
  23. * This file includes all necessary headers from the AsioStandalone library which are used
  24. * by Link.
  25. */
  26. #pragma push_macro("ASIO_STANDALONE")
  27. #define ASIO_STANDALONE 1
  28. #pragma push_macro("ASIO_NO_TYPEID")
  29. #define ASIO_NO_TYPEID 1
  30. #if LINK_PLATFORM_WINDOWS
  31. #pragma push_macro("INCL_EXTRA_HTON_FUNCTIONS")
  32. #define INCL_EXTRA_HTON_FUNCTIONS 1
  33. #endif
  34. #if defined(__clang__)
  35. #pragma clang diagnostic push
  36. #if __has_warning("-Wcomma")
  37. #pragma clang diagnostic ignored "-Wcomma"
  38. #endif
  39. #endif
  40. #if defined(_MSC_VER)
  41. #pragma warning(push)
  42. // C4191: 'operator/operation': unsafe conversion from 'type of expression' to
  43. // 'type required'
  44. #pragma warning(disable : 4191)
  45. // C4548: expression before comma has no effect; expected expression with side-effect
  46. #pragma warning(disable : 4548)
  47. // C4619: #pragma warning : there is no warning number 'number'
  48. #pragma warning(disable : 4619)
  49. // C4675: 'function' : resolved overload was found by argument-dependent lookup
  50. #pragma warning(disable : 4675)
  51. #endif
  52. #include <asio.hpp>
  53. #include <asio/system_timer.hpp>
  54. #if LINK_PLATFORM_WINDOWS
  55. #pragma pop_macro("INCL_EXTRA_HTON_FUNCTIONS")
  56. #endif
  57. #pragma pop_macro("ASIO_STANDALONE")
  58. #pragma pop_macro("ASIO_NO_TYPEID")
  59. #if defined(_MSC_VER)
  60. #pragma warning(pop)
  61. #endif
  62. #if defined(__clang__)
  63. #pragma clang diagnostic pop
  64. #endif