Expand Minimize
This topic has not yet been rated - Rate this topic

UCC_MEDIA_DEVICE_PROPERTY Enumeration

Enumerates the IDs of the properties of a media device.

Namespace: Microsoft.Office.Interop.UccApi
Assembly: Microsoft.Office.Interop.UccApi (in microsoft.office.interop.uccapi.dll)
'Declaration
Public Enumeration UCC_MEDIA_DEVICE_PROPERTY
public enum UCC_MEDIA_DEVICE_PROPERTY
public enum UCC_MEDIA_DEVICE_PROPERTY
Member nameDescription
UCCMDP_AUDIO_DEVICE_DSOUND_GUIDThe ID of a property of the string (BSTR) type identifying the DSound GUID of an audio device.
UCCMDP_AUDIO_DEVICE_WAVE_IDThe ID of a property of the integer (LONG) type identifying the wave ID of an audio device.
UCCMDP_DEVICE_PNP_NAMEThe ID of a property of the string (BSTR) type identifying the Plug-n-Play name of a device.
UCCMDP_PRODUCT_VENDOR_IDThe ID of a property of the integer (LONG) type identifying the product ID or vendor ID as exposed by a device.
UCCMDP_TELEPHONY_DEVICE_IDThe ID of a property of the string (BSTR) type identifying the ID of a telephony device using a human interface descriptor (HID) or an equivalent.
UCCMDP_TELEPHONY_DEVICE_NAMEThe ID of a property of the string (BSTR) type identifying the name of a telephony device.
UCCMDP_TELEPHONY_DEVICE_SUB_TYPEThe ID of a property of the UCC_TELEPHONY_DEVICE_SUB_TYPES type identifying the subtype of a telephony device. An example of such a device is a handset or a speaker.

An application can determine the data type and accessibility as well as the applicable class of the properties defined by this enumeration using the UCC_PROPERTY_TYPE and UCC_PROPERTY_ACCESSIBILITY as well UCC_PROPERTY_CLASS enumerations.

Win32 COM/C++ Syntax

typedef enum UCC_MEDIA_DEVICE_PROPERTY
{
   UCCMDP_TELEPHONY_DEVICE_ID = 1 | UCCPCL_MEDIA_DEVICE | UCCPAC_READ_ONLY | UCCPT_STRING,
   UCCMDP_TELEPHONY_DEVICE_NAME = 2 | UCCPCL_MEDIA_DEVICE | UCCPAC_READ_ONLY | UCCPT_STRING,
   UCCMDP_TELEPHONY_DEVICE_SUB_TYPE = 3 | UCCPCL_MEDIA_DEVICE | UCCPAC_READ_ONLY | UCCPT_ENUMERATION,
   UCCMDP_PRODUCT_VENDOR_ID = 4 | UCCPCL_MEDIA_DEVICE | UCCPAC_READ_ONLY | UCCPT_STRING,
   UCCMDP_DEVICE_PNP_NAME = 5 | UCCPCL_MEDIA_DEVICE | UCCPAC_READ_ONLY | UCCPT_STRING,
   UCCMDP_AUDIO_DEVICE_WAVE_ID = 6 | UCCPCL_MEDIA_DEVICE | UCCPAC_READ_ONLY | UCCPT_NUMERIC,
   UCCMDP_AUDIO_DEVICE_DSOUND_GUID = 7 | UCCPCL_MEDIA_DEVICE | UCCPAC_READ_ONLY | UCCPT_STRING
};

Development Platforms

Windows XP Professional with Service Pack 2 (SP2), Windows Server 2000 with Service Pack 4, Windows Server 2003, Windows Vista Ultimate Edition, Windows Vista Business Edition, Windows Vista Enterprise Edition

Target Platforms

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.