File Index Symbol Index

/******************************************************************************** * * * threadpoolapi.h -- ApiSet Contract for api-ms-win-core-threadpool-l1 * * * * Copyright (c) Microsoft Corporation. All rights reserved. * * * ********************************************************************************/
#ifdef _MSC_VER
#pragma once
#endif // _MSC_VER
#ifndef _THREADPOOLLEGACYAPISET_H_
#define _THREADPOOLLEGACYAPISET_H_
#include <apiset.h>
#include <apisetcconv.h>
#include <minwindef.h>
#include <minwinbase.h>
#ifdef __cplusplus
extern
"C"
{
#endif
//
// Thread pool API's
//
#pragma region Desktop Family or OneCore Family
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP | WINAPI_PARTITION_SYSTEM)
BOOL
QueueUserWorkItem
( );
_Must_inspect_result_
BOOL
UnregisterWaitEx
( );
_Ret_maybenull_
HANDLE
CreateTimerQueue
( );
BOOL
CreateTimerQueueTimer
( );
_Must_inspect_result_
BOOL
ChangeTimerQueueTimer
( );
_Must_inspect_result_
BOOL
DeleteTimerQueueTimer
( );
_Must_inspect_result_
BOOL
DeleteTimerQueueEx
( );
#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP | WINAPI_PARTITION_SYSTEM) */
#pragma endregion
#ifdef __cplusplus
}
#endif
#endif // _THREADPOOLLEGACYAPISET_H_