WM_TIMER
The WM_TIMER
message is posted to the installing thread s message queue or sent to the
appropriate TimerProc
WM_TIMER
wTimerID = wParam; // timer identifier
tmprc = (TIMERPROC *) lParam; // address of timer
callback
Parameters
wTimerID
Value of wParam.
Specifies the timer identifier.
tmprc
Value of lParam.
Points to an application-defined callback function that was passed to the SetTimer
Return Values
An
application should return zero if it processes this message.
Remarks
The DispatchMessage
function forwards this message when no other messages are in the thread s
message queue.
See Also