Ignore:
Timestamp:
Oct 3, 2001, 8:37:53 PM (24 years ago)
Author:
sandervl
Message:

window tracking rewrite + getdcex change (clipping)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/oslibmsg.cpp

    r6620 r6941  
    1 /* $Id: oslibmsg.cpp,v 1.43 2001-09-01 12:41:42 sandervl Exp $ */
     1/* $Id: oslibmsg.cpp,v 1.44 2001-10-03 18:37:51 sandervl Exp $ */
    22/*
    33 * Window message translation functions for OS/2
     
    8282
    8383   //TODO: Needs better translation!
    84    WM_CHAR,          WINWM_KEYDOWN,
     84   WM_CHAR,          WINWM_KEYDOWN,   //WM_KEYFIRST
    8585   WM_CHAR,          WINWM_KEYUP,
    8686   WM_CHAR,          WINWM_CHAR,
     
    9797   //
    9898   //todo: not always right if mouse msg turns out to be for the nonclient window
    99    WM_MOUSEMOVE,     WINWM_MOUSEMOVE,
     99   WM_MOUSEMOVE,     WINWM_MOUSEMOVE,    //WM_MOUSEFIRST
    100100   WM_BUTTON1DOWN,   WINWM_LBUTTONDOWN,
    101101   WM_BUTTON1UP,     WINWM_LBUTTONUP,
     
    107107   WM_BUTTON3UP,     WINWM_MBUTTONUP,
    108108   WM_BUTTON3DBLCLK, WINWM_MBUTTONDBLCLK,
    109 
     109   WM_BUTTON3DBLCLK, WINWM_MOUSEWHEEL,    //WM_MOUSELAST
    110110   999999999,        999999999,
    111111};
     
    270270        do {
    271271                eaten = FALSE;
    272                 rc = WinGetMsg(teb->o.odin.hab, &os2msg, filtermin, filtermax, 0);
     272                rc = WinGetMsg(teb->o.odin.hab, &os2msg, 0, filtermin, filtermax);
    273273                if (os2msg.msg == WM_TIMER)
    274274                    eaten = TIMER_HandleTimer(&os2msg);
Note: See TracChangeset for help on using the changeset viewer.