Microsoft DirectX 8.1 (C++)

REGFILTER Structure

The REGFILTER structure identifies a filter by name and class identifier (CLSID).

Syntax

typedef struct {
    CLSID Clsid;             
    LPWSTR Name;           
} REGFILTER;

Members

Clsid

CLSID of the filter.

Name

Name of the filter.

Remarks

The obsolete IEnumRegFilters interface uses this structure. However, new applications should use IFilterMapper2, which enumerates monikers.

See Also