summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/lxvst_plugin.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/ardour/lxvst_plugin.h')
-rwxr-xr-xlibs/ardour/ardour/lxvst_plugin.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libs/ardour/ardour/lxvst_plugin.h b/libs/ardour/ardour/lxvst_plugin.h
index db0d5cd953..9384014100 100755
--- a/libs/ardour/ardour/lxvst_plugin.h
+++ b/libs/ardour/ardour/lxvst_plugin.h
@@ -30,9 +30,9 @@
#include "pbd/stateful.h"
#include "ardour/plugin.h"
-struct _VSTFXHandle;
+struct _VSTHandle;
struct _VSTFX;
-typedef struct _VSTFXHandle VSTFXHandle;
+typedef struct _VSTHandle VSTHandle;
typedef struct _VSTFX VSTFX;
struct _AEffect;
typedef struct _AEffect AEffect;
@@ -44,7 +44,7 @@ class Session;
class LXVSTPlugin : public ARDOUR::Plugin
{
public:
- LXVSTPlugin (ARDOUR::AudioEngine&, ARDOUR::Session&, VSTFXHandle* handle);
+ LXVSTPlugin (ARDOUR::AudioEngine&, ARDOUR::Session&, VSTHandle *);
LXVSTPlugin (const LXVSTPlugin &);
~LXVSTPlugin ();
@@ -102,7 +102,7 @@ private:
bool load_plugin_preset (PresetRecord);
void add_state (XMLNode *) const;
- VSTFXHandle* handle;
+ VSTHandle * handle;
VSTFX* _vstfx;
AEffect* _plugin;
bool been_resumed;