summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/windows_vst_plugin.h
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2011-11-22 02:27:26 +0000
committerCarl Hetherington <carl@carlh.net>2011-11-22 02:27:26 +0000
commit16aece1d47ad1c1137d68ab12989cbc94b112c0f (patch)
tree4d07547a58e4209f3d40642f40907e2b658fef2b /libs/ardour/ardour/windows_vst_plugin.h
parent51e43ae5a7df65c2d0b7c1f2dcec22511cfb8a98 (diff)
Share main VSTFX / FST struct between windows / linux VSTs.
git-svn-id: svn://localhost/ardour2/branches/3.0@10762 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 973c25e6b0..6de87aee89 100644
--- a/libs/ardour/ardour/windows_vst_plugin.h
+++ b/libs/ardour/ardour/windows_vst_plugin.h
@@ -30,8 +30,8 @@
#include "pbd/stateful.h"
#include "ardour/plugin.h"
-struct _FST;
-typedef struct _FST FST;
+struct _VSTState;
+typedef struct _VSTState VSTState;
struct _AEffect;
typedef struct _AEffect AEffect;
struct _VSTHandle;
@@ -87,7 +87,7 @@ class WindowsVSTPlugin : public ARDOUR::Plugin
int set_state (XMLNode const &, int);
AEffect * plugin () const { return _plugin; }
- FST * fst () const { return _fst; }
+ VSTState * fst () const { return _fst; }
private:
@@ -103,7 +103,7 @@ private:
void add_state (XMLNode *) const;
VSTHandle* handle;
- FST* _fst;
+ VSTState* _fst;
AEffect* _plugin;
bool been_resumed;
};