ardour
dummy_lxvst.cc
Go to the documentation of this file.
1 /* Dummy LXVST methods so that libardour can be linked against the test code */
2 
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
19 {
20 
21 }
22 
23 VSTHandle *
24 vstfx_load (const char *path)
25 {
26  return 0;
27 }
28 
29 int
31 {
32  return -1;
33 }
34 
35 void
37 {
38 
39 }
40 
41 void
43 {
44 
45 }
intptr_t(* audioMasterCallback)(AEffect *, int32_t, int32_t, intptr_t, void *, float)
Definition: aeffectx.h:329
void vstfx_close(VSTState *vstfx)
Definition: dummy_lxvst.cc:18
int vstfx_init(void *ptr)
Definition: dummy_lxvst.cc:6
void vstfx_destroy_editor(VSTState *)
Definition: dummy_lxvst.cc:36
VSTHandle * vstfx_load(const char *path)
Definition: dummy_lxvst.cc:24
VSTState * vstfx_instantiate(VSTHandle *fhandle, audioMasterCallback amc, void *userptr)
Definition: dummy_lxvst.cc:12
int vstfx_unload(VSTHandle *fhandle)
Definition: dummy_lxvst.cc:30
void vstfx_exit()
Definition: dummy_lxvst.cc:42