Share via


ITuningSpaces::get__NewEnum

 
Microsoft DirectShow 9.0

ITuningSpaces::get__NewEnum

The get__NewEnum method returns an enumerator for the collection.

This method is provided to enable scripting and Visual Basic applications to iterate through the collection in a For...Each loop. C++ applications should use the ITuningSpaces::get_EnumTuningSpaces method.

Syntax

  HRESULT get__NewEnum(
    IEnumVARIANT** ppNewEnum
    );

Parameters

ppNewEnum

[out]  Pointer to a variable that receives an IEnumVARIANT interface pointer. The caller must release the interface.

Return Values

Returns S_OK if successful.

Remarks

The returned IEnumVARIANT interface is not thread safe, because it is intended primarily for use by Automation clients. Clients should not call methods on the interface from more than one thread.

Requirements

  Header: Dshow.h.

  Library: Quartz.dll.

See Also