mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-04 04:39:33 +01:00
debugging VST issues
git-svn-id: svn://localhost/ardour2/trunk@1427 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
aa60114843
commit
1161fa8731
1 changed files with 10 additions and 3 deletions
|
|
@ -326,9 +326,17 @@ DWORD WINAPI gui_event_loop (LPVOID param)
|
|||
fst_error ("cannot set timer on dummy window");
|
||||
}
|
||||
|
||||
while (GetMessageA (&msg, NULL, 0,0)) {
|
||||
while (true) {
|
||||
|
||||
GetMessageA (&msg, NULL, 0,0);
|
||||
|
||||
if (msg.message == WM_QUIT) {
|
||||
cerr << "WM QUIT received\n";
|
||||
break;
|
||||
}
|
||||
|
||||
if( msg.message == WM_KEYDOWN ) debreak();
|
||||
if (msg.message == WM_KEYDOWN) debreak();
|
||||
|
||||
TranslateMessage( &msg );
|
||||
DispatchMessageA (&msg);
|
||||
|
||||
|
|
@ -336,7 +344,6 @@ DWORD WINAPI gui_event_loop (LPVOID param)
|
|||
and run idle callbacks
|
||||
*/
|
||||
|
||||
|
||||
if( msg.message == WM_TIMER ) {
|
||||
pthread_mutex_lock (&plugin_mutex);
|
||||
again:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue