SetCoalescableTimer method

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

Implementation

int SetCoalescableTimer(
  ffi.Pointer<HWND__> hWnd,
  int nIDEvent,
  int uElapse,
  ffi.Pointer<ffi.NativeFunction<TIMERPROC>> lpTimerFunc,
  int uToleranceDelay,
) {
  return _SetCoalescableTimer(
    hWnd,
    nIDEvent,
    uElapse,
    lpTimerFunc,
    uToleranceDelay,
  );
}