Fix tests.

git-svn-id: svn://localhost/ardour2/branches/3.0@10761 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2011-11-22 02:02:04 +00:00
parent 61a838501a
commit 51e43ae5a7

View File

@ -9,7 +9,7 @@ vstfx_init (void* ptr)
}
VSTFX *
vstfx_instantiate (VSTFXHandle* fhandle, audioMasterCallback amc, void* userptr)
vstfx_instantiate (VSTHandle* fhandle, audioMasterCallback amc, void* userptr)
{
return 0;
}
@ -20,14 +20,14 @@ vstfx_close (VSTFX* vstfx)
}
VSTFXHandle *
VSTHandle *
vstfx_load (const char *path)
{
return 0;
}
int
vstfx_unload (VSTFXHandle* fhandle)
vstfx_unload (VSTHandle* fhandle)
{
return -1;
}