560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
|
*/
if(timer_id && long_timer) {
KillTimer(hwnd, timer_id);
long_timer = timer_id = 0;
}
if(!timer_id)
timer_id = SetTimer(hwnd, 1, 20, NULL);
DispatchMessage (&msg);
/* Make sure we blink everything that needs it. */
term_blink(0);
/* Send the paste buffer if there's anything to send */
term_paste();
|
>
|
|
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
|
*/
if(timer_id && long_timer) {
KillTimer(hwnd, timer_id);
long_timer = timer_id = 0;
}
if(!timer_id)
timer_id = SetTimer(hwnd, 1, 20, NULL);
if (!(IsWindow(logbox) && IsDialogMessage(logbox, &msg)))
DispatchMessage (&msg);
/* Make sure we blink everything that needs it. */
term_blink(0);
/* Send the paste buffer if there's anything to send */
term_paste();
|