Mercurial > wgsdk
view src/timer.c @ 3:8df8af626dca
dirtools: sys/stat.h->windows.h
committer: GitHub <noreply@github.com>
author | Paper <37962225+mrpapersonic@users.noreply.github.com> |
---|---|
date | Sun, 07 Aug 2022 22:47:41 -0400 |
parents | 7abb5d8b20ea |
children | be4835547dd0 |
line wrap: on
line source
#include <assert.h> #ifndef WIN32_LEAN_AND_MEAN # define WIN32_LEAN_AND_MEAN #endif #include <windows.h> #include "timer.h" void timer_init(struct timer_t* timer, HWND winampClientWindow, TIMERPROC timer_proc) { timer->winampClientWindow = winampClientWindow; timer->timer_proc = timer_proc; timer->initialized = 1; } void timer_set(struct timer_t* timer, HWND winampClientWindow) { assert(timer->initialized); if (timer->is_timer_alive) return; timer->is_timer_alive = 1; SetTimer(winampClientWindow, 1, timer->interval, timer->timer_proc); } void timer_stop(struct timer_t* timer, HWND winampClientWindow) { assert(timer->initialized); if (!timer->is_timer_alive) return; timer->is_timer_alive = 0; KillTimer(winampClientWindow, 1); }