FreeRDP
pool/timer.c
1 
20 #include <winpr/config.h>
21 
22 #include <winpr/crt.h>
23 #include <winpr/pool.h>
24 
25 #ifdef WINPR_THREAD_POOL
26 
27 PTP_TIMER winpr_CreateThreadpoolTimer(PTP_TIMER_CALLBACK pfnti, PVOID pv, PTP_CALLBACK_ENVIRON pcbe)
28 {
29  return NULL;
30 }
31 
32 VOID winpr_CloseThreadpoolTimer(PTP_TIMER pti)
33 {
34 }
35 
36 BOOL winpr_IsThreadpoolTimerSet(PTP_TIMER pti)
37 {
38  return FALSE;
39 }
40 
41 VOID winpr_SetThreadpoolTimer(PTP_TIMER pti, PFILETIME pftDueTime, DWORD msPeriod,
42  DWORD msWindowLength)
43 {
44 }
45 
46 VOID winpr_WaitForThreadpoolTimerCallbacks(PTP_TIMER pti, BOOL fCancelPendingCallbacks)
47 {
48 }
49 
50 #endif