mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-06 13:45:43 +01:00
Fix Windows VST compile.
git-svn-id: svn://localhost/ardour2/branches/3.0@10756 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
d7b38512b8
commit
ac647e5fec
1 changed files with 8 additions and 5 deletions
|
|
@ -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 ) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue