Changeset 4697 for trunk/src/user32/winmouse.cpp
- Timestamp:
- Nov 25, 2000, 2:53:54 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/winmouse.cpp
r3499 r4697 1 /* $Id: winmouse.cpp,v 1.1 0 2000-05-05 18:23:07sandervl Exp $ */1 /* $Id: winmouse.cpp,v 1.11 2000-11-25 13:53:54 sandervl Exp $ */ 2 2 /* 3 3 * Mouse handler for DINPUT … … 102 102 y = (((long)y << 16) + ScreenHeight-1) / ScreenHeight; 103 103 104 mouseHandler(dwFlags, x, y, 0, (DWORD)&mouseEvent); 105 return TRUE; 104 return mouseHandler(dwFlags, x, y, 0, (DWORD)&mouseEvent); 106 105 } 107 106 //****************************************************************************** … … 142 141 { 143 142 HWND hwndPrev; 143 BOOL ret; 144 144 145 145 dprintf(("USER32: ReleaseCapture")); 146 146 hwndPrev = GetCapture(); 147 ret = OSLibWinSetCapture(0); 147 148 if(hwndPrev) { 148 149 SendMessageA(hwndPrev, WM_CAPTURECHANGED, 0L, 0L); 149 150 } 150 return OSLibWinSetCapture(0);151 return ret; 151 152 } 152 153 //******************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.