能力值:
( LV3,RANK:20 )
|
-
-
2 楼
在线程中可以这样用:
if ( WaitForSingleObject(m_hAuthorStop, 0) != WAIT_TIMEOUT )
{
break;
}
MSG msg;
while (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE))
{
if ( msg.message == WM_QUIT )
{
break;
}
TranslateMessage(&msg);
DispatchMessage(&msg);
}
|
|
|