less verbose unit-tests
[ardour.git] / libs / ardour / test / dummy_lxvst.cc
index f051fc936aa05cac56da67c97d119339a51676a5..c614c776bf7c5cf37bbd80a3cb9280cd8bcc480f 100644 (file)
@@ -1,6 +1,6 @@
 /* Dummy LXVST methods so that libardour can be linked against the test code */
 
-#include "ardour/vstfx.h"
+#include "ardour/linux_vst_support.h"
 
 int
 vstfx_init (void* ptr)
@@ -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,13 @@ vstfx_unload (VSTHandle* fhandle)
 }
 
 void
-vstfx_destroy_editor (VSTFX *)
+vstfx_destroy_editor (VSTState *)
+{
+
+}
+
+void
+vstfx_exit ()
 {
 
 }