Browse Source

Added some comments.

tags/2021-05-28
jules 12 years ago
parent
commit
4c392e6f02
2 changed files with 17 additions and 10 deletions
  1. +9
    -7
      modules/juce_audio_plugin_client/VST/juce_VST_Wrapper.cpp
  2. +8
    -3
      modules/juce_audio_processors/format_types/juce_VST3PluginFormat.cpp

+ 9
- 7
modules/juce_audio_plugin_client/VST/juce_VST_Wrapper.cpp View File

@@ -55,12 +55,6 @@
#endif
//==============================================================================
/* These files come with the Steinberg VST SDK - to get them, you'll need to
visit the Steinberg website and jump through some hoops to sign up as a
VST developer.
Then, you'll need to make sure your include path contains your "vstsdk2.4" directory.
*/
#ifndef _MSC_VER
#define __cdecl
#endif
@@ -73,7 +67,15 @@
#pragma clang diagnostic ignored "-Wdeprecated-writable-strings"
#endif
// VSTSDK V2.4 includes..
/* These files come with the Steinberg VST SDK - to get them, you'll need to
visit the Steinberg website and agree to whatever is currently required to
get them. The best version to get is the VST3 SDK, which also contains
the older VST2.4 files.
Then, you'll need to make sure your include path contains your "VST SDK3"
directory (or whatever you've named it on your machine). The introjucer has
a special box for setting this path.
*/
#include <public.sdk/source/vst2.x/audioeffectx.h>
#include <public.sdk/source/vst2.x/aeffeditor.h>
#include <public.sdk/source/vst2.x/audioeffectx.cpp>


+ 8
- 3
modules/juce_audio_processors/format_types/juce_VST3PluginFormat.cpp View File

@@ -43,9 +43,14 @@
#pragma clang diagnostic ignored "-Wshadow"
#endif
// Got an include error here? If so, you'll need to install the VST3 SDK somewhere,
// and use the introjucer or your IDE to add it to your include path. The introjucer
// has a special box for specifying this path for each export target.
/* These files come with the Steinberg VST3 SDK - to get them, you'll need to
visit the Steinberg website and agree to whatever is currently required to
get them.
Then, you'll need to make sure your include path contains your "VST SDK3"
directory (or whatever you've named it on your machine). The introjucer has
a special box for setting this path.
*/
#include <base/source/baseiids.cpp>
#include <base/source/fatomic.cpp>
#include <base/source/fbuffer.cpp>


Loading…
Cancel
Save