- Timestamp:
- Mar 27, 2002, 11:56:25 AM (23 years ago)
- Location:
- trunk/src/user32
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/oslibwin.cpp
r8097 r8126 1 /* $Id: oslibwin.cpp,v 1.11 6 2002-03-18 13:03:53sandervl Exp $ */1 /* $Id: oslibwin.cpp,v 1.117 2002-03-27 10:56:24 sandervl Exp $ */ 2 2 /* 3 3 * Window API wrappers for OS/2 … … 22 22 #include <winconst.h> 23 23 #include <winuser32.h> 24 #include <wprocess.h> 24 25 #include "oslibwin.h" 25 26 #include "oslibutil.h" … … 805 806 BOOL OSLibWinQueryWindowProcess(HWND hwnd, ULONG *pid, ULONG *tid) 806 807 { 807 return WinQueryWindowProcess(hwnd, pid, tid); 808 BOOL ret; 809 810 ret = WinQueryWindowProcess(hwnd, pid, tid); 811 *tid = MAKE_THREADID(*pid, *tid); 812 return ret; 808 813 } 809 814 //****************************************************************************** -
trunk/src/user32/win32wbase.cpp
r8109 r8126 1 /* $Id: win32wbase.cpp,v 1.3 19 2002-03-22 11:02:04sandervl Exp $ */1 /* $Id: win32wbase.cpp,v 1.320 2002-03-27 10:56:25 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 2976 2976 { 2977 2977 OSLibWinQueryWindowProcess(child->getOS2WindowHandle(), &pid, &tid); 2978 ULONG wtid = MAKE_THREADID( pid, tid); 2979 2980 if(dwThreadId == wtid) { 2978 2979 if(dwThreadId == tid) { 2981 2980 dprintf2(("EnumThreadWindows: Found Window %x", child->getWindowHandle())); 2982 2981 if((rc = lpfn(child->getWindowHandle(), lParam)) == FALSE) {
Note:
See TracChangeset
for help on using the changeset viewer.