THREADPOOLWAITBLOCK structure
A wait block stores information about a wait registered to the thread pool. Each block in the array is for a graph in one of the stream objects. The offset of a block in this array is the same as the offset of the stream that owns the graph.
Syntax
typedef struct _THREADPOOLWAITBLOCK {
HANDLE hWaitHandle;
MSPSTREAMCONTEXT *pContext;
BOOL operator == (struct _THREADPOOLWAITBLOCK &t) { return ((hWaitHandle == t.hWaitHandle) && (pContext ==t.pContext)); } ;
} THREADPOOLWAITBLOCK, *PTHREADPOOLWAITBLOCK;
Members
hWaitHandle
Wait handle returned by RegisterWaitForSingleObject.pContext
Pointer to the context structure.
Requirements
TAPI version |
Requires TAPI 3.0 or later |
Header |
Mspcall.h |