WM_CLOSE:
DestroyWindow(hDlg);
return TRUE;
- case WM_DESTROY:
- PostQuitMessage(0);
- return TRUE;
}
return FALSE;
}
29.05.2012, 01:16, "Alexey Slepov" :
> I figured out now.
> As described in wine sources, PostQuitMessage() se
I figured out now.
As described in wine sources, PostQuitMessage() sets a flag in the thread's
message queue that signals it to generate
a WM_QUIT message when there are no other pending sent or posted messages in
the queue.
The tests with skipped testcases are those which use WM_TIMER messages -