[tr] Wait function Description [/tr] MsgWaitForMultipleObjects Waitsuntil one or all of the specified objects are in the signaled state orthe time-out interval elapses. The objects can include input eventobjects.
MsgWaitForMultipleObjectsEx Waitsuntil one or all of the specified objects are in the signaled state、anI/O completion routine or asynchronous procedure call (APC) is queuedto the thread、or the time-out interval elapses. The array of objectscan include input event objects.
RegisterWaitForSingleObject Directs a wait thread in the thread pool to wait on the object.
SignalObjectAndWait Atomically signals one object and waits on another object.
UnregisterWait Cancels a registered wait operation.
UnregisterWaitEx Cancels a registered wait operation.
WaitForMultipleObjects Waits until one or all of the specified objects are in the signaled state or the time-out interval elapses.
WaitForMultipleObjectsEx Waitsuntil one or all of the specified objects are in the signaled state、anI/O completion routine or asynchronous procedure call (APC) is queuedto the thread、or the time-out interval elapses.
WaitForSingleObject Waits until the specified object is in the signaled state or the time-out interval elapses.
WaitForSingleObjectEx Waitsuntil the specified object is in the signaled state、an I/O completionroutine or asynchronous procedure call (APC) is queued to the thread,or the time-out interval elapses.
WaitOrTimerCallback An application-defined function that serves as the starting address for a timer callback or a registered wait callback.
[tr] Waitable-timer function Description [/tr] CancelWaitableTimer Sets the specified waitable timer to the inactive state.
CreateWaitableTimer Creates or opens a waitable timer object.
CreateWaitableTimerEx Creates or opens a waitable timer object and returns a handle to the object.
OpenWaitableTimer Opens an existing named waitable timer object.
SetWaitableTimer Activates the specified waitable timer.
TimerAPCProc Application-defined timer completion routine used with the SetWaitableTimer function.