Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
A version of this page is also available for
4/8/2010

This method registers an identifiable instance of a filter.

Syntax

HRESULT RegisterFilterInstance(
  CLSID 
clsid,
  LPCWSTR 
Name,
  CLSID* 
MRId
);

Parameters

clsid

[in] Globally unique identifier (GUID) of the filter.

Name

[in] Descriptive name of the instance.

MRId

[out] Returned media resource ID. This parameter is a locally unique identifier for this instance of this filter.

Return Value

Returns an HRESULTvalue.

Remarks

This method handles cases such as when two similar sound cards that are driven by the same driver are available, and it is necessary to choose which card will emit the sound. This is not needed if there is only one instance of the filter (such as when there is only one sound card in the computer), or if all instances of the filter are equivalent.

The filter itself must have already been registered.

Requirements

Windows Embedded CE Windows CE 2.12 and later
Windows Mobile Windows Mobile Version 5.0 and later
Note Microsoft DirectShow applications and DirectShow filters have different include file and Library requirements
For more information, see Setting Up the Build Environment,
Version 2.12 requires DXPAK 1.0 or later

See Also