Fix Windows VST compile.

git-svn-id: svn://localhost/ardour2/branches/3.0@10756 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2011-11-22 00:15:52 +00:00
parent d7b38512b8
commit ac647e5fec

View file

@ -212,11 +212,14 @@ static FSTInfo *fst_info_from_plugin( FST *fst ) {
}
// most simple one :) could be sufficient....
static long simple_master_callback( struct AEffect *fx, long opcode, long index, long value, void *ptr, float opt ) {
if( opcode == audioMasterVersion )
return 2;
else
return 0;
static intptr_t
simple_master_callback (struct AEffect *fx, int32_t opcode, int32_t index, intptr_t value, void *ptr, float opt)
{
if (opcode == audioMasterVersion) {
return 2;
} else {
return 0;
}
}
FSTInfo *fst_get_info( char *dllpath ) {