Changeset 8126 for trunk/src/user32/oslibwin.cpp
- Timestamp:
- Mar 27, 2002, 11:56:25 AM (23 years ago)
- File:
-
- 1 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 //******************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.