Share via


CPersistStream::WriteToStream

 
Microsoft DirectShow 9.0

CPersistStream::WriteToStream

Writes the filter's data to the given stream.

Syntax

  virtual HRESULT WriteToStream(
    IStream *pStream
);

Parameters

pStream

Pointer to an IStream interface that specifies the filter data's destination stream.

Return Value

Returns S_OK. The derived class should return a valid HRESULT value.

Remarks

The default version writes nothing; it can be overridden to write data specific to your class.

Requirements

**  Header:** Declared in Pstream.h; include Streams.h.

**  Library:** Use Strmbase.lib (retail builds) or Strmbasd.lib (debug builds).

See Also