请教函数 MsgWaitForMultipleObjects(50分)

  • 主题发起人 主题发起人 吴剑明
  • 开始时间 开始时间

吴剑明

Unregistered / Unconfirmed
GUEST, unregistred user!
请详细说说他的用法和用途。<br>HELP讲的不大清楚。所以大家别把HELP上的抄给我看。:)
 
这个HELP写了一大滩还没说清楚吗,如果是中文的话...
 
写是写了一大堆,不过和没写差不多。。。
 
你看看 WaitForMultipleObject 然后再举一反三不就行了? :-)
 
我踢。。
 
DWORD MsgWaitForMultipleObjects(<br>&nbsp; &nbsp; DWORD nCount, // number of handles in the object handle array &nbsp;<br>&nbsp; &nbsp; LPHANDLE pHandles, // pointer to the object-handle array <br>&nbsp; &nbsp; BOOL fWaitAll, // wait for all or wait for one <br>&nbsp; &nbsp; DWORD dwMilliseconds, // time-out interval in milliseconds <br>&nbsp; &nbsp; DWORD dwWakeMask // type of input events to wait for <br>&nbsp; &nbsp;);<br>nCount指定pHandles指定的wait object数组,可以为0<br>fWaitAll为true时等待上面指定的wait object全部触发时返回,<br>为false时等待上面指定的wait object任意一个触发时返回,<br>dwMilliseconds是等待几毫秒,如果什么都没有发生,就要超时返回<br>dwWakeMask 是指定当等到什么windows消息时退出,QS_ALLINPUT表示任意消息。<br><br>当nCount为0时,可以当有超时值的 WaitMessage 使用<br>
 
我也遇到了这个问题,故在蛋兄的贴子里面灌水。希望能够原谅。
 
接受答案了.
 
后退
顶部