Необходимо обрабатывать мноооого таймеров ... Код (Text): invoke SetTimer,hWnd,1,10*1000,offset TimerProc invoke SetTimer,hWnd,2,100*1000,offset TimerProc invoke SetTimer,hWnd,3,40*1000,offset TimerProc invoke SetTimer,hWnd,4,60*1000,offset TimerProc . . . invoke SetTimer,hWnd,100,50*1000,offset TimerProc TimerProc proc uses ebx edi hWin:HWND, uMsg:UINT, idEvent:UINT, dwTime:DWORD . . ????????????? TimerProc endp Как в TimerProc узнать какой таймер завершился? idEvent в TimerProc соответствует nIDEvent в SetTimer ?
hwnd [in] Handle to the window associated with the timer. uMsg [in] Specifies the WM_TIMER message. idEvent [in] Specifies the timer's identifier. dwTime [in] Specifies the number of milliseconds that have elapsed since the system was started. This is the value returned by the GetTickCount function. мсдн рулит