Share via


WMDM_TAG_DATATYPE (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_TAG_DATATYPE enumeration type defines a data type.

Syntax

typedef enum tagWMDM_TAG_DATATYPE{
  WMDM_TYPE_DWORD  =0,
  WMDM_TYPE_STRING  =1,
  WMDM_TYPE_BINARY  =2,
  WMDM_TYPE_BOOL  =3,
  WMDM_TYPE_QWORD  =4,
  WMDM_TYPE_WORD  =5,
  WMDM_TYPE_GUID  =6,
  WMDM_TYPE_DATE  =7
} WMDM_TAG_DATATYPE;

Members

WMDM_TYPE_DWORD

Specifies a 4-byte DWORD value.

WMDM_TYPE_STRING

Specifies a null-terminated Unicode string (2 bytes per character).

WMDM_TYPE_BINARY

Specifies an array of bytes.

WMDM_TYPE_BOOL

Specifies a 4-byte Boolean value.

WMDM_TYPE_QWORD

Specifies an 8-byte QWORD value.

WMDM_TYPE_WORD

Specifies a 2-byte WORD value.

WMDM_TYPE_GUID

Specifies a 128-bit (16-byte) GUID.

WMDM_TYPE_DATE

Specifies a date.

Requirements

Header: Defined in wmdm.idl.

Library: mssachlp.lib

See Also