SetTimer function user32
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);