mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-08 14:45:43 +01:00
amend 5dc2497100 ...get the windows version to compile.
eventually vststate_init() needs cleaning up, but not tonight.
This commit is contained in:
parent
3ff588e189
commit
694de29953
1 changed files with 10 additions and 1 deletions
|
|
@ -220,7 +220,16 @@ static VSTState*
|
|||
fst_new (void)
|
||||
{
|
||||
VSTState* fst = (VSTState*) calloc (1, sizeof (VSTState));
|
||||
vststate_init (fst);
|
||||
|
||||
//vststate_init (fst);
|
||||
pthread_mutex_init (&state->lock, 0);
|
||||
pthread_mutex_init (&state->state_lock, 0);
|
||||
pthread_cond_init (&state->window_status_change, 0);
|
||||
pthread_cond_init (&state->plugin_dispatcher_called, 0);
|
||||
pthread_cond_init (&state->window_created, 0);
|
||||
state->want_program = -1;
|
||||
//
|
||||
|
||||
#ifdef PLATFORM_WINDOWS
|
||||
fst->voffset = 50;
|
||||
fst->hoffset = 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue