Changeset 3072 for trunk/src/user32/oslibmsgtranslate.cpp
- Timestamp:
- Mar 9, 2000, 10:50:11 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/oslibmsgtranslate.cpp
r3007 r3072 1 /* $Id: oslibmsgtranslate.cpp,v 1.2 1 2000-03-04 19:54:03sandervl Exp $ */1 /* $Id: oslibmsgtranslate.cpp,v 1.22 2000-03-09 21:50:11 sandervl Exp $ */ 2 2 /* 3 3 * Window message translation functions for OS/2 … … 195 195 if(ISMOUSE_CAPTURED()) 196 196 { 197 if(DInputMouseHandler(win32wnd->getWindowHandle(), MOUSEMSG_BUTTON, winMsg->pt.x, winMsg->pt.y))197 if(DInputMouseHandler(win32wnd->getWindowHandle(), winMsg->message, winMsg->pt.x, winMsg->pt.y)) 198 198 goto dummymessage; //dinput swallowed message 199 199 } … … 231 231 if(ISMOUSE_CAPTURED()) 232 232 { 233 if(DInputMouseHandler(win32wnd->getWindowHandle(), MOUSEMSG_MOVE, winMsg->pt.x, winMsg->pt.y))233 if(DInputMouseHandler(win32wnd->getWindowHandle(), winMsg->message, winMsg->pt.x, winMsg->pt.y)) 234 234 goto dummymessage; //dinput swallowed message 235 235 } … … 449 449 if(ISMOUSE_CAPTURED()) 450 450 { 451 if(DInputMouseHandler(win32wnd->getWindowHandle(), MOUSEMSG_BUTTON, winMsg->pt.x, winMsg->pt.y))451 if(DInputMouseHandler(win32wnd->getWindowHandle(), winMsg->message, winMsg->pt.x, winMsg->pt.y)) 452 452 goto dummymessage; //dinput swallowed message 453 453 } … … 485 485 if(ISMOUSE_CAPTURED()) 486 486 { 487 if(DInputMouseHandler(win32wnd->getWindowHandle(), MOUSEMSG_MOVE, winMsg->pt.x, winMsg->pt.y))487 if(DInputMouseHandler(win32wnd->getWindowHandle(), winMsg->message, winMsg->pt.x, winMsg->pt.y)) 488 488 goto dummymessage; //dinput swallowed message 489 489 }
Note:
See TracChangeset
for help on using the changeset viewer.