Share via


DbgWaitForMultipleObjects (Compact 2013)

3/26/2014

In a debug build, this function waits for the current time-out or the array of handles to become signaled, whichever comes first. In other builds, this is treated as a call to the Win32 WaitForMultipleObjects function, with an INFINITE time-out.

Syntax

DWORD WINAPI DbgWaitForMultipleObjects(
  DWORD nCount,
  CONST HANDLE* lpHandles,
  BOOL bWaitAll
);

Parameters

  • nCount
    Number of entries in the lpHandles array.
  • lpHandles
    Array of HANDLE values.
  • bWaitAll
    TRUE if all handles in the array must become signaled to satisfy the wait. FALSE if any one handle can satisfy the wait.

Requirements

Header

dshow.h

Library

Strmiids.lib

See Also

Reference

Wait Debugging