Changeset 4848 for trunk/src/user32/winmouse.cpp
- Timestamp:
- Dec 29, 2000, 7:41:23 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/winmouse.cpp
r4697 r4848 1 /* $Id: winmouse.cpp,v 1.1 1 2000-11-25 13:53:54sandervl Exp $ */1 /* $Id: winmouse.cpp,v 1.12 2000-12-29 18:40:00 sandervl Exp $ */ 2 2 /* 3 3 * Mouse handler for DINPUT … … 12 12 #include <misc.h> 13 13 #include "win32wbase.h" 14 #include "win32wnd.h"14 #include <winuser32.h> 15 15 #include <win\mouse.h> 16 16 #include "winmouse.h" … … 110 110 HWND hwnd; 111 111 112 hwnd = Win32Window::OS2ToWin32Handle(OSLibWinQueryCapture());112 hwnd = OS2ToWin32Handle(OSLibWinQueryCapture()); 113 113 dprintf(("USER32: GetCapture returned %x", hwnd)); 114 114 return hwnd; … … 129 129 ReleaseCapture(); 130 130 } 131 rc = OSLibWinSetCapture(Win32 Window::Win32ToOS2Handle(hwnd));131 rc = OSLibWinSetCapture(Win32ToOS2Handle(hwnd)); 132 132 dprintf(("USER32: SetCapture %x (prev %x) returned %d", hwnd, hwndPrev, rc)); 133 133 if(hwndPrev) {
Note:
See TracChangeset
for help on using the changeset viewer.