~ubuntu-branches/ubuntu/utopic/ardour3/utopic

« back to all changes in this revision

Viewing changes to libs/ardour/test/dummy_lxvst.cc

  • Committer: Package Import Robot
  • Author(s): Felipe Sateler
  • Date: 2013-09-21 19:05:02 UTC
  • Revision ID: package-import@ubuntu.com-20130921190502-8gsftrku6jnzhd7v
Tags: upstream-3.4~dfsg
ImportĀ upstreamĀ versionĀ 3.4~dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Dummy LXVST methods so that libardour can be linked against the test code */
 
2
 
 
3
#include "ardour/linux_vst_support.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
}
 
40
 
 
41
void
 
42
vstfx_exit ()
 
43
{
 
44
 
 
45
}