summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/windows_vst_plugin.h
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2011-11-22 01:28:34 +0000
committerCarl Hetherington <carl@carlh.net>2011-11-22 01:28:34 +0000
commitff98e0490d240e1010da92460601b0e7fb5ee848 (patch)
tree10a7e8c1c3a319ba6abb6584659bf942374842a2 /libs/ardour/ardour/windows_vst_plugin.h
parentd98b2b6039f4733bc264046810d56c5b56ddb288 (diff)
Share VSTHandle and VSTInfo between windows/linux VSTs.
git-svn-id: svn://localhost/ardour2/branches/3.0@10758 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/ardour/windows_vst_plugin.h')
-rw-r--r--libs/ardour/ardour/windows_vst_plugin.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libs/ardour/ardour/windows_vst_plugin.h b/libs/ardour/ardour/windows_vst_plugin.h
index e4b23fc46e..973c25e6b0 100644
--- a/libs/ardour/ardour/windows_vst_plugin.h
+++ b/libs/ardour/ardour/windows_vst_plugin.h
@@ -30,12 +30,12 @@
#include "pbd/stateful.h"
#include "ardour/plugin.h"
-struct _FSTHandle;
-typedef struct _FSTHandle FSTHandle;
struct _FST;
typedef struct _FST FST;
struct _AEffect;
typedef struct _AEffect AEffect;
+struct _VSTHandle;
+typedef struct _VSTHandle VSTHandle;
namespace ARDOUR {
class AudioEngine;
@@ -44,7 +44,7 @@ class Session;
class WindowsVSTPlugin : public ARDOUR::Plugin
{
public:
- WindowsVSTPlugin (ARDOUR::AudioEngine&, ARDOUR::Session&, FSTHandle* handle);
+ WindowsVSTPlugin (ARDOUR::AudioEngine&, ARDOUR::Session&, VSTHandle *);
WindowsVSTPlugin (const WindowsVSTPlugin &);
~WindowsVSTPlugin ();
@@ -102,7 +102,7 @@ private:
bool load_plugin_preset (PresetRecord);
void add_state (XMLNode *) const;
- FSTHandle* handle;
+ VSTHandle* handle;
FST* _fst;
AEffect* _plugin;
bool been_resumed;