The TimerProc function is an application-defined callback function that processes WM_TIMER messages.
VOID CALLBACK TimerProc(
|
HWND hwnd, |
// handle of window for timer messages |
|
UINT uMsg, |
// WM_TIMER message |
|
UINT idEvent, |
// timer identifier |
|
DWORD dwTime |
// current system time |
|
); |
This function does not return a value.
TimerProc is a placeholder for the application-defined function name.