SetCoalescableTimer function user32
Creates a timer with the specified time-out value and coalescing tolerance delay.
UINT_PTR SetCoalescableTimer(
HWND hWnd,
UINT_PTR nIDEvent,
UINT uElapse,
TIMERPROC lpTimerFunc,
ULONG uToleranceDelay
);
Implementation
int SetCoalescableTimer(int hWnd, int nIDEvent, int uElapse,
Pointer<NativeFunction<TIMERPROC>> lpTimerFunc, int uToleranceDelay) =>
_SetCoalescableTimer(hWnd, nIDEvent, uElapse, lpTimerFunc, uToleranceDelay);