FreeRDP
Loading...
Searching...
No Matches
pool/io.c
1
20#include <winpr/config.h>
21
22#include <winpr/crt.h>
23#include <winpr/pool.h>
24#include <winpr/wlog.h>
25
26#ifdef WINPR_THREAD_POOL
27
28PTP_IO winpr_CreateThreadpoolIo(WINPR_ATTR_UNUSED HANDLE fl,
29 WINPR_ATTR_UNUSED PTP_WIN32_IO_CALLBACK pfnio,
30 WINPR_ATTR_UNUSED PVOID pv,
31 WINPR_ATTR_UNUSED PTP_CALLBACK_ENVIRON pcbe)
32{
33 WLog_ERR("TODO", "TODO: Implement");
34 return NULL;
35}
36
37VOID winpr_CloseThreadpoolIo(WINPR_ATTR_UNUSED PTP_IO pio)
38{
39 WLog_ERR("TODO", "TODO: Implement");
40}
41
42VOID winpr_StartThreadpoolIo(WINPR_ATTR_UNUSED PTP_IO pio)
43{
44 WLog_ERR("TODO", "TODO: Implement");
45}
46
47VOID winpr_CancelThreadpoolIo(WINPR_ATTR_UNUSED PTP_IO pio)
48{
49 WLog_ERR("TODO", "TODO: Implement");
50}
51
52VOID winpr_WaitForThreadpoolIoCallbacks(WINPR_ATTR_UNUSED PTP_IO pio,
53 WINPR_ATTR_UNUSED BOOL fCancelPendingCallbacks)
54{
55 WLog_ERR("TODO", "TODO: Implement");
56}
57
58#endif