From 7c5fbe70603b0ef554ae6986859a881317fc9073 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 22 Nov 2011 02:29:44 +0000 Subject: [PATCH] Fix tests. git-svn-id: svn://localhost/ardour2/branches/3.0@10763 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/ardour/lxvst_plugin.h | 4 ++-- libs/ardour/test/dummy_lxvst.cc | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/libs/ardour/ardour/lxvst_plugin.h b/libs/ardour/ardour/lxvst_plugin.h index f47bb140aa..c22ba07f17 100755 --- a/libs/ardour/ardour/lxvst_plugin.h +++ b/libs/ardour/ardour/lxvst_plugin.h @@ -31,9 +31,9 @@ #include "ardour/plugin.h" struct _VSTHandle; -struct _VSTFX; +struct _VSTState; typedef struct _VSTHandle VSTHandle; -typedef struct _VSTFX VSTFX; +typedef struct _VSTState VSTState; struct _AEffect; typedef struct _AEffect AEffect; diff --git a/libs/ardour/test/dummy_lxvst.cc b/libs/ardour/test/dummy_lxvst.cc index f051fc936a..1c8b63e466 100644 --- a/libs/ardour/test/dummy_lxvst.cc +++ b/libs/ardour/test/dummy_lxvst.cc @@ -8,14 +8,14 @@ vstfx_init (void* ptr) return 0; } -VSTFX * +VSTState * vstfx_instantiate (VSTHandle* fhandle, audioMasterCallback amc, void* userptr) { return 0; } void -vstfx_close (VSTFX* vstfx) +vstfx_close (VSTState* vstfx) { } @@ -33,7 +33,7 @@ vstfx_unload (VSTHandle* fhandle) } void -vstfx_destroy_editor (VSTFX *) +vstfx_destroy_editor (VSTState *) { } -- 2.30.2