WaitForThreadpoolWorkCallbacks function
Waits for outstanding work callbacks to complete and optionally cancels pending callbacks that have not yet started to execute.
Syntax
VOID WINAPI WaitForThreadpoolWorkCallbacks( _Inout_ PTP_WORK pwk, _In_ BOOL fCancelPendingCallbacks );
Parameters
- pwk [in, out]
-
A TP_WORK structure that defines the work object. The CreateThreadpoolWork function returns this structure.
- fCancelPendingCallbacks [in]
-
Indicates whether to cancel queued callbacks that have not yet started to execute.
Return value
This function does not return a value.
Remarks
To compile an application that uses this function, define _WIN32_WINNT as 0x0600 or higher.
Requirements
|
Minimum supported client |
Windows Vista [desktop apps | Windows Store apps] |
|---|---|
|
Minimum supported server |
Windows Server 2008 [desktop apps | Windows Store apps] |
|
Header |
|
|
Library |
|
|
DLL |
|
See also