Microsoft DirectX 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.

See Also