summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/lxvst_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/lxvst_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/lxvst_plugin.h')
-rwxr-xr-xlibs/ardour/ardour/lxvst_plugin.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/ardour/ardour/lxvst_plugin.h b/libs/ardour/ardour/lxvst_plugin.h
index 9384014100..f47bb140aa 100755
--- a/libs/ardour/ardour/lxvst_plugin.h
+++ b/libs/ardour/ardour/lxvst_plugin.h
@@ -87,7 +87,7 @@ class LXVSTPlugin : public ARDOUR::Plugin
int set_state (XMLNode const &, int);
AEffect * plugin () const { return _plugin; }
- VSTFX * vstfx () const { return _vstfx; }
+ VSTState * vstfx () const { return _vstfx; }
private:
@@ -103,8 +103,8 @@ private:
void add_state (XMLNode *) const;
VSTHandle * handle;
- VSTFX* _vstfx;
- AEffect* _plugin;
+ VSTState * _vstfx;
+ AEffect * _plugin;
bool been_resumed;
};