SetCoalescableTimer function user32

int SetCoalescableTimer(
  1. int hWnd,
  2. int nIDEvent,
  3. int uElapse,
  4. Pointer<NativeFunction<TIMERPROC>> lpTimerFunc,
  5. int uToleranceDelay
)

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);