IMMDeviceCollection Interface

Previous Next

IMMDeviceCollection Interface

The IMMDeviceCollection interface represents a collection of multimedia device resources. In the current implementation, the only device resources that the MMDevice API can create collections of are audio endpoint devices.

A client can obtain a reference to an IMMDeviceCollection interface instance by calling the IMMDeviceEnumerator::EnumAudioEndpoints method. This method creates a collection of endpoint objects, each of which represents an audio endpoint device in the system. Each endpoint object in the collection supports the IMMDevice and IMMEndpoint interfaces. For more information, see IMMDeviceEnumerator Interface.

For a code example that uses the IMMDeviceCollection interface, see Device Properties.

IMMDeviceCollection inherits from the IUnknown interface. In addition to the methods inherited from IUnknown, IMMDeviceCollection supports the following methods.

Method Description
GetCount Retrieves a count of the devices in the device collection.
Item Retrieves a pointer to the specified item in the device collection.

Requirements

Client: Windows Vista

Header: Include Mmdeviceapi.h.

See Also

Previous Next