COutputQueue::InitialThreadProc
Microsoft DirectShow 9.0 |
COutputQueue::InitialThreadProc
The InitialThreadProc method calls the COutputQueue::ThreadProc method when the thread is created.
Syntax
static DWORD WINAPI InitialThreadProc( LPVOID pv );
Parameters
pv
this
pointer.
Return Value
Returns the value returned by the COutputQueue::ThreadProc method.
Remarks
This method is the thread procedure for the object's worker thread. The object's this pointer is the thread parameter. The method dereferences this to call ThreadProc.
Requirements
** Header:** Declared in Outputq.h; include Streams.h.
** Library:** Use Strmbase.lib (retail builds) or Strmbasd.lib (debug builds).
See Also