Microsoft DirectX 9.0

AM_INTF_SEARCH_FLAGS Enumeration

Specifies the types of object to search, when attempting to find an interface on the filter graph.

Syntax

enum _AM_INTF_SEARCH_FLAGS {
    AM_INTF_SEARCH_INPUT_PIN  = 0x00000001,
    AM_INTF_SEARCH_OUTPUT_PIN = 0x00000002,
    AM_INTF_SEARCH_FILTER     = 0x00000004
};

Elements

AM_INTF_SEARCH_INPUT_PIN

Search input pins.

AM_INTF_SEARCH_OUTPUT_PIN

Search output pins.

AM_INTF_SEARCH_FILTER

Search filters.

Remarks

If no flags are set (the default case), it is equivalent to the bitwise OR of all the flags. All filters and pins are searched.

See Also