Share via


WMDM_ENUM_PROP_VALID_VALUES_FORM (deprecated)

banner art

This is preliminary documentation and subject to change.

This topic documents a feature of the Windows Media Device Manager SDK. We recommend that you migrate your application to use the Windows Portable Devices API. For more information, see the Windows Portable Devices SDK.

The WMDM_ENUM_PROP_VALID_VALUES_FORM enumeration type describes possible forms of valid values for a property.

Syntax

typedef enum _WMDM_ENUM_PROP_VALID_VALUES_FORM{
  WMDM_ENUM_PROP_VALID_VALUES_ANY  ,
  WMDM_ENUM_PROP_VALID_VALUES_RANGE  ,
  WMDM_ENUM_PROP_VALID_VALUES_ENUM  
} WMDM_ENUM_PROP_VALID_VALUES_FORM;

Members

WMDM_ENUM_PROP_VALID_VALUES_ANY

All values are valid.

WMDM_ENUM_PROP_VALID_VALUES_RANGE

Valid values are expressed as a range. For detailed information, see the WMDM_PROP_VALUES_RANGE structure.

WMDM_ENUM_PROP_VALID_VALUES_ENUM

Valid values are an enumerated set. For detailed information, see the WMDM_PROP_VALUES_ENUM structure.

Remarks

This enumeration is used in the WMDM_PROP_DESC structure to specify the form of valid values for a property.

Requirements

Header: Defined in wmdm.idl.

Library: mssachlp.lib

See Also