IMDSPEnumDevice::Next method (mswmdm.h)
The Next method retrieves a pointer to the next celtIMDSPDevice interfaces.
Syntax
HRESULT Next(
[in] ULONG celt,
[out] IMDSPDevice **ppDevice,
[out] ULONG *pceltFetched
);
Parameters
[in] celt
Number of devices requested.
[out] ppDevice
Array of celt pointers IMDSPDevice allocated by the caller. Return NULL to indicate that no more devices exist or an error has occurred. If celt is more than 1, the caller must allocate enough memory to store celt number of interface pointers.
[out] pceltFetched
Pointer to a ULONG variable that receives the number of interfaces retrieved.
Return value
The method returns an HRESULT. All the interface methods in Windows Media Device Manager can return any of the following classes of error codes:
- Standard COM error codes
- Windows error codes converted to HRESULT values
- Windows Media Device Manager error codes
Remarks
When there are no more service provider interfaces for enumerated devices, or when there are fewer of these interfaces than requested by the celt parameter, the return value from Next is S_FALSE. When this happens, the pceltFetched parameter must be queried to determine how many interfaces, if any, were returned.
The device enumerator may not reflect the effect of device insertion and removal.
This method must be implemented. It must not return WMDM_E_NOTSUPPORTED or E_NOTIMPL. For more information, see Mandatory and Optional Interfaces.
Requirements
Requirement | Value |
---|---|
Target Platform | Windows |
Header | mswmdm.h |
Library | Mssachlp.lib |