BOOL done = TRUE;
while(done)        // 保持循环直到 done=TRUE
 {
  if (PeekMessage(&msg,NULL,0,0,PM_REMOVE))   // 有消息在等待吗?
  {
   if (msg.message==WM_QUIT)    // 收到退出消息?
   {
    done=FALSE;     // 是,则done=TRUE
   }
   else       // 不是,处理窗口消息
   { 
    TranslateMessage(&msg);    // 翻译消息
    DispatchMessage(&msg);    // 发送消息
   }
  }}
这段代码在不同性能的机器上单位时间内循环的次数是一样的吗?这个peekmessage单位时间内执行的次数是受什么控制的啊?