DMO_PARTIAL_MEDIATYPE Structure
The DMO_PARTIAL_MEDIATYPE structure partially describes a media type used by a Microsoft DirectX Media Object (DMO). The DMO registration functions use this structure to specify supported media types.
Syntax
typedef struct _DMO_PARTIAL_MEDIATYPE {
GUID type;
GUID subtype;
} DMO_PARTIAL_MEDIATYPE, *PDMO_PARTIAL_MEDIATYPE;
Members
type
Major type GUID. Use GUID_NULL to match any major type.
subtype
Subtype GUID. Use GUID_NULL to match any subtype.
Requirements
Header: Dmoreg.h
See Also