summaryrefslogtreecommitdiff
path: root/libs/ardour/test/dummy_lxvst.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/test/dummy_lxvst.cc')
-rw-r--r--libs/ardour/test/dummy_lxvst.cc33
1 files changed, 33 insertions, 0 deletions
diff --git a/libs/ardour/test/dummy_lxvst.cc b/libs/ardour/test/dummy_lxvst.cc
new file mode 100644
index 0000000000..d21702ec43
--- /dev/null
+++ b/libs/ardour/test/dummy_lxvst.cc
@@ -0,0 +1,33 @@
+/* Dummy LXVST methods so that libardour can be linked against the test code */
+
+#include "ardour/vstfx.h"
+
+int
+vstfx_init (void* ptr)
+{
+ return 0;
+}
+
+VSTFX *
+vstfx_instantiate (VSTFXHandle* fhandle, audioMasterCallback amc, void* userptr)
+{
+ return 0;
+}
+
+void
+vstfx_close (VSTFX* vstfx)
+{
+
+}
+
+VSTFXHandle *
+vstfx_load (const char *path)
+{
+ return 0;
+}
+
+int
+vstfx_unload (VSTFXHandle* fhandle)
+{
+ return -1;
+}