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.

ivsthostapplication.h 5.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. //------------------------------------------------------------------------
  2. // Project : VST SDK
  3. //
  4. // Category : Interfaces
  5. // Filename : pluginterfaces/vst/ivsthostapplication.h
  6. // Created by : Steinberg, 04/2006
  7. // Description : VST Host Interface
  8. //
  9. //-----------------------------------------------------------------------------
  10. // This file is part of a Steinberg SDK. It is subject to the license terms
  11. // in the LICENSE file found in the top-level directory of this distribution
  12. // and at www.steinberg.net/sdklicenses.
  13. // No part of the SDK, including this file, may be copied, modified, propagated,
  14. // or distributed except according to the terms contained in the LICENSE file.
  15. //-----------------------------------------------------------------------------
  16. #pragma once
  17. #include "pluginterfaces/vst/ivstmessage.h"
  18. //------------------------------------------------------------------------
  19. namespace Steinberg {
  20. namespace Vst {
  21. //------------------------------------------------------------------------
  22. /** Basic Host Callback Interface.
  23. \ingroup vstIHost vst300
  24. - [host imp]
  25. - [passed as 'context' in to IPluginBase::initialize () ]
  26. - [released: 3.0.0]
  27. - [mandatory]
  28. Basic VST host application interface. */
  29. //------------------------------------------------------------------------
  30. class IHostApplication: public FUnknown
  31. {
  32. public:
  33. //------------------------------------------------------------------------
  34. /** Gets host application name. */
  35. virtual tresult PLUGIN_API getName (String128 name) = 0;
  36. /** Creates host object (e.g. Vst::IMessage). */
  37. virtual tresult PLUGIN_API createInstance (TUID cid, TUID _iid, void** obj) = 0;
  38. //------------------------------------------------------------------------
  39. static const FUID iid;
  40. };
  41. DECLARE_CLASS_IID (IHostApplication, 0x58E595CC, 0xDB2D4969, 0x8B6AAF8C, 0x36A664E5)
  42. //------------------------------------------------------------------------
  43. inline IMessage* allocateMessage (IHostApplication* host)
  44. {
  45. TUID iid;
  46. IMessage::iid.toTUID (iid);
  47. IMessage* m = 0;
  48. if (host->createInstance (iid, iid, (void**)&m) == kResultOk)
  49. return m;
  50. return 0;
  51. }
  52. //------------------------------------------------------------------------
  53. /** VST 3 to VST 2 Wrapper Interface.
  54. \ingroup vstIHost vst310
  55. - [host imp]
  56. - [passed as 'context' to IPluginBase::initialize () ]
  57. - [released: 3.1.0]
  58. - [mandatory]
  59. Informs the Plug-in that a VST 3 to VST 2 wrapper is used between the Plug-in and the real host.
  60. Implemented by the VST 2 Wrapper. */
  61. //------------------------------------------------------------------------
  62. class IVst3ToVst2Wrapper: public FUnknown
  63. {
  64. public:
  65. //------------------------------------------------------------------------
  66. static const FUID iid;
  67. };
  68. DECLARE_CLASS_IID (IVst3ToVst2Wrapper, 0x29633AEC, 0x1D1C47E2, 0xBB85B97B, 0xD36EAC61)
  69. //------------------------------------------------------------------------
  70. /** VST 3 to AU Wrapper Interface.
  71. \ingroup vstIHost vst310
  72. - [host imp]
  73. - [passed as 'context' to IPluginBase::initialize () ]
  74. - [released: 3.1.0]
  75. - [mandatory]
  76. Informs the Plug-in that a VST 3 to AU wrapper is used between the Plug-in and the real host.
  77. Implemented by the AU Wrapper. */
  78. //------------------------------------------------------------------------
  79. class IVst3ToAUWrapper: public FUnknown
  80. {
  81. public:
  82. //------------------------------------------------------------------------
  83. static const FUID iid;
  84. };
  85. DECLARE_CLASS_IID (IVst3ToAUWrapper, 0xA3B8C6C5, 0xC0954688, 0xB0916F0B, 0xB697AA44)
  86. //------------------------------------------------------------------------
  87. /** VST 3 to AAX Wrapper Interface.
  88. \ingroup vstIHost vst368
  89. - [host imp]
  90. - [passed as 'context' to IPluginBase::initialize () ]
  91. - [released: 3.6.8]
  92. - [mandatory]
  93. Informs the Plug-in that a VST 3 to AAX wrapper is used between the Plug-in and the real host.
  94. Implemented by the AAX Wrapper. */
  95. //------------------------------------------------------------------------
  96. class IVst3ToAAXWrapper : public FUnknown
  97. {
  98. public:
  99. //------------------------------------------------------------------------
  100. static const FUID iid;
  101. };
  102. DECLARE_CLASS_IID (IVst3ToAAXWrapper, 0x6D319DC6, 0x60C56242, 0xB32C951B, 0x93BEF4C6)
  103. //------------------------------------------------------------------------
  104. /** Wrapper MPE Support Interface
  105. \ingroup vstIHost vst3612
  106. - [host imp]
  107. - [passed as 'context' to IPluginBase::initialize () ]
  108. - [released: 3.6.12]
  109. - [optional]
  110. Implemented on wrappers that support MPE to Note Expression translation.
  111. Per default MPE input processing is enabled, the masterChannel will be zero, the memberBeginChannel
  112. will be one and the memberEndChannel will be 14.
  113. As MPE is a subset of the VST3 Note Expression feature, mapping from the three MPE expressions is
  114. handled via the INoteExpressionPhysicalUIMapping interface.
  115. */
  116. //------------------------------------------------------------------------
  117. class IVst3WrapperMPESupport : public FUnknown
  118. {
  119. public:
  120. //------------------------------------------------------------------------
  121. /** enable or disable MPE processing
  122. * @param state true to enable, false to disable MPE processing
  123. * @return kResultTrue on success */
  124. virtual tresult PLUGIN_API enableMPEInputProcessing (TBool state) = 0;
  125. /** setup the MPE processing
  126. * @param masterChannel MPE master channel (zero based)
  127. * @param memberBeginChannel MPE member begin channel (zero based)
  128. * @param memberEndChannel MPE member end channel (zero based)
  129. * @return kResultTrue on success */
  130. virtual tresult PLUGIN_API setMPEInputDeviceSettings (int32 masterChannel,
  131. int32 memberBeginChannel,
  132. int32 memberEndChannel) = 0;
  133. //------------------------------------------------------------------------
  134. static const FUID iid;
  135. };
  136. DECLARE_CLASS_IID (IVst3WrapperMPESupport, 0x44149067, 0x42CF4BF9, 0x8800B750, 0xF7359FE3)
  137. //------------------------------------------------------------------------
  138. } // namespace Vst
  139. } // namespace Steinberg