Fix tests.

git-svn-id: svn://localhost/ardour2/branches/3.0@10763 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington
2011-11-22 02:29:44 +00:00
parent 16aece1d47
commit 7c5fbe7060
2 changed files with 5 additions and 5 deletions

View File

@@ -31,9 +31,9 @@
#include "ardour/plugin.h"
struct _VSTHandle;
struct _VSTFX;
struct _VSTState;
typedef struct _VSTHandle VSTHandle;
typedef struct _VSTFX VSTFX;
typedef struct _VSTState VSTState;
struct _AEffect;
typedef struct _AEffect AEffect;

View File

@@ -8,14 +8,14 @@ vstfx_init (void* ptr)
return 0;
}
VSTFX *
VSTState *
vstfx_instantiate (VSTHandle* fhandle, audioMasterCallback amc, void* userptr)
{
return 0;
}
void
vstfx_close (VSTFX* vstfx)
vstfx_close (VSTState* vstfx)
{
}
@@ -33,7 +33,7 @@ vstfx_unload (VSTHandle* fhandle)
}
void
vstfx_destroy_editor (VSTFX *)
vstfx_destroy_editor (VSTState *)
{
}