Creating an app that needs an event to trigger every few seconds or so.
I'm used to game design where a simple EventTick()
that is handled by the engine does all the work. How can I make an event like this in the WinApi desktop wizard. I need to check a Proc Id in intermittent periods.
Thinking something like-
case WM_TICK:
{do thing}
break;
Or any other way to do this. I have also looked into WM_Timers
but was getting mixed results so was thinking there was probably another way.