MsgWaitForMultipleObjects equivalent

  • Thread starter Thread starter Alexander Muylaert
  • Start date Start date
A

Alexander Muylaert

Hi

I have to suspend my application a while. But Messages should be processed.
In Win32 api I could do this with MsgWaitForMultipleObjects. How Can I do
this now?

kind regards

Alexander
 
I believe WaitHandle.WaitAny() is implemented with
MsgWaitForMultipleObjects. It should pump messages. I know for sure
that WaitHandle.WaitOne() does.
 
Back
Top