Menu

Retrieves the IEnumVARIANT or IEnumUnknown enumerator interface for the collection of stops. Use the interface to retrieve objects from the collection.

Copy Code
HRESULT 
    get_NewEnum
   (
    LPUNKNOWN*  
    ppunk
  
);

Parameters

ppunk

[out] Points to the enumerator interface.

Return Value

The following list includes the most like return values. However, other return values are possible.

S_OK

The method succeeded.

E_POINTER

Pointer is invalid.

E_OUTOFMEMORY

Ran out of memory during procedure.

Remarks

The enumerator interface supports both IEnumVARIANT and IEnumUnknown . You can find information about these interfaces in the Platform SDK.

See Also