summaryrefslogtreecommitdiff
path: root/libs/ardour/test/dummy_lxvst.cc
blob: c614c776bf7c5cf37bbd80a3cb9280cd8bcc480f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/* Dummy LXVST methods so that libardour can be linked against the test code */

#include "ardour/linux_vst_support.h"

int
vstfx_init (void* ptr)
{
	return 0;
}

VSTState *
vstfx_instantiate (VSTHandle* fhandle, audioMasterCallback amc, void* userptr)
{
	return 0;
}

void
vstfx_close (VSTState* vstfx)
{

}

VSTHandle *
vstfx_load (const char *path)
{
	return 0;
}

int
vstfx_unload (VSTHandle* fhandle)
{
	return -1;
}

void
vstfx_destroy_editor (VSTState *)
{

}

void
vstfx_exit ()
{

}