Scroll to navigation

CoWaitForMultipleHandles(3w) Wine API CoWaitForMultipleHandles(3w)

NAME

CoWaitForMultipleHandles (OLE32.@)

SYNOPSIS

HRESULT CoWaitForMultipleHandles
(
DWORD dwFlags,
DWORD dwTimeout,
ULONG cHandles,
LPHANDLE pHandles,
LPDWORD lpdwindex
)
 

DESCRIPTION

Waits for one or more handles to become signaled.
 

PARAMS

dwFlags [In] Flags. See notes.
dwTimeout [In] Timeout in milliseconds.
cHandles [In] Number of handles pointed to by pHandles.
pHandles [In] Handles to wait for.
lpdwindex [Out] Index of handle that was signaled.
 

RETURNS

Success: S_OK.
Failure: RPC_S_CALLPENDING on timeout.
 

NOTES

The dwFlags parameter can be zero or more of the following:
 

COWAIT_WAITALL - Wait for all of the handles to become signaled.
 

COWAIT_ALERTABLE - Allows a queued APC to run during the wait.
 

SEE ALSO

MsgWaitForMultipleObjects, WaitForMultipleObjects.
 

IMPLEMENTATION

Declared in "objbase.h".
Implemented in "dlls/ole32/compobj.c".
Debug channel "ole".
Oct 2012 Wine API