File: message.c

package info (click to toggle)
dosemu-freedos 1%3A0.0.b9r5a-3
  • links: PTS
  • area: contrib
  • in suites: etch-m68k
  • size: 19,768 kB
  • ctags: 23,285
  • sloc: ansic: 143,966; asm: 20,397; makefile: 3,868; perl: 1,106; yacc: 690; sh: 553; pascal: 297; xml: 150; cpp: 67
file content (819 lines) | stat: -rw-r--r-- 21,914 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
/* --------- message.c ---------- */

#include "dflat.h"

#define USECBRKHNLDR 1

static int px = -1, py = -1;
static int pmx = -1, pmy = -1;
static int mx, my;
static int handshaking=0;
static volatile BOOL CriticalError;
BOOL AllocTesting=FALSE,AltDown=FALSE;
jmp_buf AllocError;

/* ---------- event queue ---------- */
static struct events    {
    MESSAGE event;
    int mx;
    int my;
} EventQueue[MAXMESSAGES];

/* ---------- message queue --------- */
static struct msgs {
    WINDOW wnd;
    MESSAGE msg;
    PARAM p1;
    PARAM p2;
} MsgQueue[MAXMESSAGES];

static int EventQueueOnCtr;
static int EventQueueOffCtr;
static int EventQueueCtr;
static int MsgQueueOnCtr;
static int MsgQueueOffCtr;
static int MsgQueueCtr;

static int lagdelay = FIRSTDELAY;

WINDOW CaptureMouse;
WINDOW CaptureKeyboard;
static BOOL NoChildCaptureMouse;
static BOOL NoChildCaptureKeyboard;
static int doubletimer = 0;
static int delaytimer  = 1;
static int clocktimer  = 2;
static char timerused[3] = {0, 0, 0};
static long unsigned int timerend[3] = {0, 0, 0};
static long unsigned int timerstart[3] = {0, 0, 0};
volatile long unsigned int *biostimer = MK_FP(0x40,0x6c);
char time_string[] = "12:34pm    ";
static WINDOW Cwnd;

static void StopMsg(void);

/* ------- timer interrupt service routine ------- */
/* More complex countdown handling by Eric Auer */
/* Allows us to work without hooking intr. 0x08 */
int timed_out(int timer)		/* was: countdown 0? */
{
    if ((timer > 2) || (timer < 0))
        return -1;			/* invalid -> always elapsed */

    if (timerused[timer] == 0)		/* not active at all? */
        return 0;

    if (timerused[timer] == 2)		/* timeout already known? */
        return 1;

    if ((biostimer[0] < timerstart[timer]) || (biostimer[0] >= timerend[timer]))
        {
        timerused[timer] = 2;		/* countdown elapsed */
        return 1;
        }

    return 0;				/* still waiting */

}

int timer_running(int timer)		/* was: countdown > 0? */
{
    if ((timer > 2) || (timer < 0))
        return 0;			/* invalid -> never running */

    if (timerused[timer] == 1)		/* running? */
        {
        return (1 - timed_out(timer));  /* if not elapsed, running */
        }
    else
        return 0;                       /* certainly not running */

}

int timer_disabled(int timer)		/* was: countdown -1? */
{
    if ((timer > 2) || (timer < 0))
        return 1;			/* invalid -> always disabled */

    return (timerused[timer] == 0);

}

void disable_timer(int timer)		/* was: countdown = -1 */
{
    if ((timer > 2) || (timer < 0))
        return;

    timerused[timer] = 0;

}

void set_timer(int timer, int secs)
{
    if ((timer > 2) || (timer < 0))
        return;

    timerstart[timer]=biostimer[0];
    timerend[timer]=timerstart[timer] + (secs*182UL/10) + 1;
    timerused[timer]=1;                 /* mark as running */

}

void set_timer_ticks(int timer, int ticks)
{
    if ((timer > 2) || (timer < 0))
        return;

    timerstart[timer]=biostimer[0];
    timerend[timer]=timerstart[timer] + ticks;
    timerused[timer]=1;                 /* mark as running */
}

#ifdef OLDCRITERR
static char ermsg[] = "Error accessing drive x:";
#else
static char ermsg[] = "Error accessing drive";
#endif

/* -------- test for critical errors --------- */
int TestCriticalError(void)
{
    int rtn = 0;

    if (CriticalError)
        {
    	beep();
        rtn = 1;
        CriticalError = FALSE;
        if (TestErrorMessage(ermsg) == FALSE)
            rtn = 2;

        }

    return rtn;

}

/* ------ critical error interrupt service routine ------ */
#ifdef OLDCRITERR
static void interrupt far newcrit(IREGS ir);

static void interrupt far newcrit(IREGS ir)
{
    if (!(ir.ax & 0x8000))              /* If any drive affected... */
        {
        ermsg[sizeof(ermsg)-2]=(ir.ax & 0xff) + 'A';
        CriticalError=TRUE;             /* ... only then we have a crit. error */
        }

    ir.ax = 0;

}

#else

int crit_error(void);

/* ----- critical error handler ----- */
int crit_error(void)
{
    CriticalError = TRUE;
    hardretn(-1);		/* return an error!    */
    return 2;			/* is this correct???  */

    /* some possibilities: hardresume(1) is retry,     */
    /* hardresume(2) is abort. Or return to the caller */
    /* with a fake function result: hardretn(result)   */
}

#endif

static void StopMsg(void)
{
    ClearClipboard();
    ClearDialogBoxes();
    restorecursor(); 
    unhidecursor();
    hide_mousecursor();

}

#ifdef USECBRKHNLDR
/* ------ control break handler --------- */
#define ABORT		0
#define CONTINUE	1	/* any non-zero # will continue */
int c_break(void)
{
/*    PostMessage(NULL, STOP, 0, 0);
    StopMsg();
*/
    return CONTINUE;	/* JUST IGNORE CTRL BREAK ... */
}
#endif

/* ------------ initialize the message system --------- */
BOOL init_messages(void)
{
    AllocTesting = TRUE;
    if (setjmp(AllocError) != 0)
        {
        StopMsg();
        return FALSE;
	}

    resetmouse();
    set_mousetravel(0, SCREENWIDTH-1, 0, SCREENHEIGHT-1);
    savecursor();
    hidecursor();
    px = py = -1;
    pmx = pmy = -1;
    mx = my = 0;
    CaptureMouse = CaptureKeyboard = NULL;
    NoChildCaptureMouse = FALSE;
    NoChildCaptureKeyboard = FALSE;
    MsgQueueOnCtr = MsgQueueOffCtr = MsgQueueCtr = 0;
    EventQueueOnCtr = EventQueueOffCtr = EventQueueCtr = 0;

#ifdef OLDCRITERR		/* old style: hook intr 0x24 manually    */
    setvect(CRIT, newcrit);	/* (vector save/restore not needed here) */
#else
    harderr(crit_error);	/* set critical error handler (dos.h)  */
    				/* handler uses hardretn / hardresume  */
#endif

#ifdef USECBRKHNLDR
    ctrlbrk(c_break);		/* set ctrl break handler (dos.h) */
    				/* handler returns 0 to abort program */
    setcbrk(0);			/* 1 = all / 0 = only con calls check */
#endif

    PostMessage(NULL,START,0,0);
    lagdelay = FIRSTDELAY;
    return TRUE;

}

/* ----- post an event and parameters to event queue ---- */
static void PostEvent(MESSAGE event, int p1, int p2)
{
    if (EventQueueCtr != MAXMESSAGES)
        {
        EventQueue[EventQueueOnCtr].event = event;
        EventQueue[EventQueueOnCtr].mx = p1;
        EventQueue[EventQueueOnCtr].my = p2;
        if (++EventQueueOnCtr == MAXMESSAGES)
            EventQueueOnCtr = 0;

        EventQueueCtr++;
        }

}

/* ------ collect mouse, clock, and keyboard events ----- */
static void near collect_events(void)
{
    static int ShiftKeys=0;
    int sk,hr;
    struct tm *now;

    /* Test for a clock event (one/second) */
    if (timed_out(clocktimer))
        {
        struct COUNTRY thiscountry;     /* Country support new 0.8 */
        time_t t=time(NULL);            /* The current time */
        char timesep=':';               /* Default 12:12am separator */
        int ampmflag=1;

        if (country(0, &thiscountry))   /* dos.h (int 21.38) */
            {
            timesep=thiscountry.co_tmsep[0];
            ampmflag=(thiscountry.co_time == 0);  /* 0 ampm 1 24h clock */
            }

        /* Get the current time */
        now=localtime(&t);
        hr=now->tm_hour;
        if (ampmflag && (hr > 12)) hr -= 12;
        if (ampmflag && (hr == 0)) hr  = 12;
        if (ampmflag)
            {
            sprintf(time_string, "%2d%c%02d%s", hr, timesep, now->tm_min, ((now->tm_hour > 11) ? "pm " : "am "));
            }
        else
            sprintf(time_string, "%2d%c%02d", hr, timesep, now->tm_min);

        set_timer(clocktimer, 1);       /* Reset the timer */
        PostEvent(CLOCKTICK, FP_SEG(time_string), FP_OFF(time_string));
        }

    /* Keyboard events */
    if ((sk=getshift()) != ShiftKeys)
        {
        ShiftKeys=sk;

        /* The shift status changed */
        PostEvent(SHIFT_CHANGED, sk, 0);
    	if (sk & ALTKEY)
            AltDown=TRUE;

        }

    /* Test for keystroke */
    if (keyhit())
        {
        int c=getkey();

        AltDown=FALSE;
        PostEvent(KEYBOARD, c, sk);
        }

    /* Test for mouse events */
    if (button_releases())
        {
        /* The button was released */
        AltDown=FALSE;
        set_timer_ticks(doubletimer, DOUBLETICKS);
        PostEvent(BUTTON_RELEASED, mx, my);
        disable_timer(delaytimer);
        }

    get_mouseposition(&mx, &my);
    if (mx != px || my != py)
        {
        px=mx;
        py=my;
        PostEvent(MOUSE_MOVED, mx, my);
        }

    if (rightbutton())
        {
        AltDown=FALSE;
        PostEvent(RIGHT_BUTTON, mx, my);
	}

    if (leftbutton())
        {
        AltDown=FALSE;
        if (mx == pmx && my == pmy)
            {
            /* Same position as last left button */
            if (timer_running(doubletimer))
                {
                /* Second click before double timeout */
                disable_timer(doubletimer);
                PostEvent(DOUBLE_CLICK, mx, my);
                }
            else if (!timer_running(delaytimer))
                {
                /* Button held down a while */
                set_timer_ticks(delaytimer, lagdelay);
                lagdelay=DELAYTICKS;
                PostEvent(LEFT_BUTTON, mx, my);
                }

            }
        else
            {
            /* New button press */
            disable_timer(doubletimer);
            set_timer_ticks(delaytimer, FIRSTDELAY);
            lagdelay=DELAYTICKS;
            PostEvent(LEFT_BUTTON, mx, my);
            pmx=mx;
            pmy=my;
            }

        }
    else
        lagdelay=FIRSTDELAY;

}

/* ----- post a message and parameters to msg queue ---- */
void PostMessage(WINDOW wnd, MESSAGE msg, PARAM p1, PARAM p2)
{
    if (MsgQueueCtr != MAXMESSAGES)
        {
        MsgQueue[MsgQueueOnCtr].wnd=wnd;
        MsgQueue[MsgQueueOnCtr].msg=msg;
        MsgQueue[MsgQueueOnCtr].p1=p1;
        MsgQueue[MsgQueueOnCtr].p2=p2;
        if (++MsgQueueOnCtr == MAXMESSAGES)
            MsgQueueOnCtr=0;

        MsgQueueCtr++;
        }

}

/* --------- send a message to a window ----------- */
int SendMessage(WINDOW wnd, MESSAGE msg, PARAM p1, PARAM p2)
{
    int rtn=TRUE,x,y;

#ifdef INCLUDE_LOGGING
    LogMessages(wnd, msg, p1, p2);
#endif
    if (wnd != NULL)
        switch (msg)
            {
            case PAINT:
            case BORDER:
                /* Don't send these messages unless the window is visible */
                if (isVisible(wnd))
                    rtn=(*wnd->wndproc)(wnd, msg, p1, p2);

                break;
            case RIGHT_BUTTON:
            case LEFT_BUTTON:
            case DOUBLE_CLICK:
            case BUTTON_RELEASED:
                /* Don't send these messages unless the window is
                   visible or has captured the mouse */
                if (isVisible(wnd) || wnd == CaptureMouse)
                    rtn=(*wnd->wndproc)(wnd, msg, p1, p2);

                break;
            case KEYBOARD:
            case SHIFT_CHANGED:
                /* Don't send these messages unless the window is
                   visible or has captured the keyboard */
                if (!(isVisible(wnd) || wnd == CaptureKeyboard))
                    break;
            default:
                rtn=(*wnd->wndproc)(wnd, msg, p1, p2);
                break;

            }

    /* Window processor returned true or the message was sent to no window at all. */
    if (rtn != FALSE)
        {
        /* Process messages that a window sends to the system itself */
        switch (msg)
            {
            case STOP:
                StopMsg();
                break;

            /* Clock messages */
            case CAPTURE_CLOCK:
                if (Cwnd == NULL)
                    set_timer(clocktimer, 0);

                wnd->PrevClock = Cwnd;
                Cwnd = wnd;
                break;
            case RELEASE_CLOCK:
                Cwnd = wnd->PrevClock;
                if (Cwnd == NULL)
                    disable_timer(clocktimer);

                break;

            /* Keyboard messages */
            case KEYBOARD_CURSOR:
                if (wnd == NULL)
                    cursor((int)p1, (int)p2);
                else if (wnd == inFocus)
                    cursor(GetClientLeft(wnd)+(int)p1,GetClientTop(wnd)+(int)p2);

                break;
            case CAPTURE_KEYBOARD:
                if (p2)
                    ((WINDOW)p2)->PrevKeyboard=CaptureKeyboard;
                else
                    wnd->PrevKeyboard = CaptureKeyboard;

                CaptureKeyboard=wnd;
                NoChildCaptureKeyboard=(int)p1;
                break;
            case RELEASE_KEYBOARD:
                if (wnd != NULL)
                    {
                    if (CaptureKeyboard == wnd || (int)p1)
                        CaptureKeyboard=wnd->PrevKeyboard;
                    else
                        {
                        WINDOW twnd=CaptureKeyboard;

                        while (twnd != NULL)
                            {
                            if (twnd->PrevKeyboard == wnd)
                                {
                                twnd->PrevKeyboard=wnd->PrevKeyboard;
                                break;
                                }

                            twnd=twnd->PrevKeyboard;
                            }

                        if (twnd == NULL)
                            CaptureKeyboard = NULL;

                        }

                    wnd->PrevKeyboard = NULL;
                    }
                else
                    CaptureKeyboard = NULL;

                NoChildCaptureKeyboard = FALSE;
                break;
            case CURRENT_KEYBOARD_CURSOR:
                curr_cursor(&x, &y);
                *(int*)p1=x;
                *(int*)p2=y;
                break;
            case SAVE_CURSOR:
                savecursor();
                break;
            case RESTORE_CURSOR:
                restorecursor();
                break;
            case HIDE_CURSOR:
                normalcursor();
                hidecursor();
                break;
            case SHOW_CURSOR:
                if (p1)
                    set_cursor_type(0x0607);     /*  */
                else
                    set_cursor_type(0x0106);     /* _ */

                unhidecursor();
                break;
            case WAITKEYBOARD:
                waitforkeyboard();
                break;

            /* Mouse messages */
            case RESET_MOUSE:
                resetmouse();
                set_mousetravel(0, SCREENWIDTH-1, 0, SCREENHEIGHT-1);
                break;
            case MOUSE_INSTALLED:
                rtn=mouse_installed();
                break;
            case MOUSE_TRAVEL:
                {
                RECT rc;

                if (!p1)
                    {
                    rc.lf=rc.tp=0;
                    rc.rt=SCREENWIDTH-1;
                    rc.bt=SCREENHEIGHT-1;
                    }
                else 
                    rc=*(RECT *)p1;

                set_mousetravel(rc.lf, rc.rt, rc.tp, rc.bt);
                break;
                }
            case SHOW_MOUSE:
                show_mousecursor();
                break;
            case HIDE_MOUSE:
                hide_mousecursor();
                break;
            case MOUSE_CURSOR:
                set_mouseposition((int)p1, (int)p2);
                break;
            case CURRENT_MOUSE_CURSOR:
                get_mouseposition((int*)p1,(int*)p2);
                break;
            case WAITMOUSE:
                waitformouse();
                break;
            case TESTMOUSE:
                rtn=mousebuttons();
                break;
            case CAPTURE_MOUSE:
                if (p2)
                    ((WINDOW)p2)->PrevMouse=CaptureMouse;
                else
                    wnd->PrevMouse=CaptureMouse;

                CaptureMouse=wnd;
                NoChildCaptureMouse=(int)p1;
                break;
            case RELEASE_MOUSE:
                if (wnd != NULL)
                    {
                    if (CaptureMouse == wnd || (int)p1)
                        CaptureMouse=wnd->PrevMouse;
                    else
                        {
                        WINDOW twnd=CaptureMouse;

                        while (twnd != NULL)
                            {
                            if (twnd->PrevMouse == wnd)
                                {
                                twnd->PrevMouse=wnd->PrevMouse;
                                break;
                                }

                            twnd=twnd->PrevMouse;
                            }

                        if (twnd == NULL)
                            CaptureMouse = NULL;

                        }

                    wnd->PrevMouse = NULL;
                    }
                else
                    CaptureMouse = NULL;

                NoChildCaptureMouse = FALSE;
                break;
            default:
                break;

            }

        }

    return rtn;

}

static RECT VisibleRect(WINDOW wnd)
{
    RECT rc=WindowRect(wnd);

    if (!TestAttribute(wnd, NOCLIP))
        {
        WINDOW pwnd=GetParent(wnd);
        RECT prc;

        prc=ClientRect(pwnd);
        while (pwnd != NULL)
            {
            if (TestAttribute(pwnd, NOCLIP))
                break;

            rc=subRectangle(rc, prc);
            if (!ValidRect(rc))
                break;

            if ((pwnd=GetParent(pwnd)) != NULL)
                prc=ClientRect(pwnd);

            }

	}

    return rc;

}

/* ----- find window that mouse coordinates are in --- */
static WINDOW inWindow(WINDOW wnd, int x, int y)
{
    WINDOW Hit=NULL;

    while (wnd != NULL)
        {
        if (isVisible(wnd))
            {
            WINDOW wnd1;
            RECT rc=VisibleRect(wnd);

            if (InsideRect(x, y, rc))
                Hit=wnd;

            if ((wnd1=inWindow(LastWindow(wnd), x, y)) != NULL)
                Hit=wnd1;

            if (Hit != NULL)
                break;

            }

        wnd=PrevWindow(wnd);
	}

    return Hit;

}

/* Get the window in which a mouse event occurred */
static WINDOW MouseWindow(int x, int y)
{
    WINDOW Mwnd=inWindow(ApplicationWindow, x, y);

    /* Process mouse captures ----- */
    if (CaptureMouse != NULL)
        {
        if (NoChildCaptureMouse || Mwnd == NULL || !isAncestor(Mwnd, CaptureMouse))
            Mwnd=CaptureMouse;

	}

    return Mwnd;

}

void handshake(void)
{
    handshaking++;
    dispatch_message();
    --handshaking;

}

/* ---- dispatch messages to the message proc function ---- */
BOOL dispatch_message(void)
{
    WINDOW Mwnd, Kwnd;

    collect_events();                   /* Collect mouse and keyboard events */

    /* Dequeue and process events */
    while (EventQueueCtr > 0)
        {
        struct events ev;

        ev = EventQueue[EventQueueOffCtr];
        if (++EventQueueOffCtr == MAXMESSAGES)
            EventQueueOffCtr = 0;

        --EventQueueCtr;

        /* Get the window in which a keyboard event occurred */
        Kwnd=inFocus;

        /* Process keyboard captures */
        if (CaptureKeyboard != NULL)
            if (Kwnd == NULL || NoChildCaptureKeyboard || !isAncestor(Kwnd, CaptureKeyboard))
                Kwnd = CaptureKeyboard;

        /* Send mouse and keyboard messages to the window that should get them */
        switch (ev.event)
            {
            case SHIFT_CHANGED:
            case KEYBOARD:
                if (!handshaking)
                    SendMessage(Kwnd, ev.event, ev.mx, ev.my);

                break;
            case LEFT_BUTTON:
                if (!handshaking)
                    {
                    Mwnd=MouseWindow(ev.mx, ev.my);
                    if (!CaptureMouse || (!NoChildCaptureMouse && isAncestor(Mwnd, CaptureMouse)))
                    	if (Mwnd != inFocus)
                            SendMessage(Mwnd, SETFOCUS, TRUE, 0);

                    SendMessage(Mwnd, LEFT_BUTTON, ev.mx, ev.my);
                    }
                break;
            case BUTTON_RELEASED:
            case DOUBLE_CLICK:
            case RIGHT_BUTTON:
                if (handshaking)
                    break;

            case MOUSE_MOVED:
                Mwnd=MouseWindow(ev.mx, ev.my);
                SendMessage(Mwnd, ev.event, ev.mx, ev.my);
                break;
            case CLOCKTICK:
                SendMessage(Cwnd, ev.event,(PARAM) MK_FP(ev.mx, ev.my), 0);
                break;
            default:
                break;

            }

        }

    /* Dequeue and process messages */
    while (MsgQueueCtr > 0)
        {
        struct msgs mq;

        mq=MsgQueue[MsgQueueOffCtr];
        if (++MsgQueueOffCtr == MAXMESSAGES)
            MsgQueueOffCtr=0;

        --MsgQueueCtr;
        SendMessage(mq.wnd, mq.msg, mq.p1, mq.p2);
        if (mq.msg == ENDDIALOG)
            return FALSE;

        if (mq.msg == STOP)
            {
            PostMessage(NULL, STOP, 0, 0);
            return FALSE;
            }

        }

    return TRUE;

}