SetTimer function user32

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

Creates a timer with the specified time-out value.

UINT_PTR SetTimer(
  HWND      hWnd,
  UINT_PTR  nIDEvent,
  UINT      uElapse,
  TIMERPROC lpTimerFunc
);

Implementation

int SetTimer(int hWnd, int nIDEvent, int uElapse,
        Pointer<NativeFunction<TIMERPROC>> lpTimerFunc) =>
    _SetTimer(hWnd, nIDEvent, uElapse, lpTimerFunc);