CMSPStream::ProcessGraphEvent method (mspstrm.h)

The ProcessGraphEvent method is called by the MSPCall object to let the stream handle graph events. The default implementation returns S_OK and does nothing. Derived MSPs must override this method if they want to propagate graph events to the application or take some other action in response to graph events.

Syntax

HRESULT ProcessGraphEvent(
  long     lEventCode,
  LONG_PTR lParam1,
  LONG_PTR lParam2
);

Parameters

lEventCode

Implementation-dependent descriptor of the graph event.

lParam1

Implementation-dependent information on the graph event.

lParam2

Implementation-dependent information on the graph event.

Return value

None

Requirements

Requirement Value
Target Platform Windows
Header mspstrm.h

See also

CMSPStream