1c8b63e4662072bbb387a87ecd9e00f0b359ee60
[ardour.git] / libs / ardour / test / dummy_lxvst.cc
1 /* Dummy LXVST methods so that libardour can be linked against the test code */
2
3 #include "ardour/vstfx.h"
4
5 int
6 vstfx_init (void* ptr)
7 {
8         return 0;
9 }
10
11 VSTState *
12 vstfx_instantiate (VSTHandle* fhandle, audioMasterCallback amc, void* userptr)
13 {
14         return 0;
15 }
16
17 void
18 vstfx_close (VSTState* vstfx)
19 {
20
21 }
22
23 VSTHandle *
24 vstfx_load (const char *path)
25 {
26         return 0;
27 }
28
29 int
30 vstfx_unload (VSTHandle* fhandle)
31 {
32         return -1;
33 }
34
35 void
36 vstfx_destroy_editor (VSTState *)
37 {
38
39 }